:root {
    --background-color: #e9edf19d;
    --background-color-toggle: #e9edf1;
    --text-color: black;
    --primary-color: #0096ff;
    --accent-color-hover: #72ffff;
    --text-color-footer: #1d1b1b;
    --background-color-footer: #9898a3;
    --shadow-color1: #bebebe;
    --shadow-color2: #ffffff;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}
@font-face {
    font-family: "Poppins";
    src: url("/Doku/src/fonts/Poppins-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Poppins-Bold";
    src: url("/Doku/src/fonts/Poppins-Bold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
.dark-mode {
    --background-color: #2c2929;
    --background-color-toggle: #2c2929;
    --text-color: #cecedd;
    --primary-color: #0e9afd;
    --accent-color-hover: #72ffff;
    --text-color-footer: #fff;
    --background-color-footer: #1c1c1c;
    --shadow-color1: #383333;
    --shadow-color2: #2f2b2b;
}
.dark-mode .hero {
    filter: brightness(80%);
}
.dark-mode .skill {
    filter: brightness(80%);
}
.dark-mode .post {
    filter: brightness(80%);
}
.dark-mode .tool {
    filter: brightness(80%);
}
.dark-mode .guide {
    filter: brightness(80%);
}
h1,h2,h3,h4,h5,h6{
    color: var(--primary-color);
}
p{
    color: var(--text-color);
}
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    background-color: var(--background-color);
    
}
#local-storage-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1em;
    background-color: var(--background-color-footer);
    text-align: center;
    z-index: 999;
}
#local-storage-banner p{
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

#accept-storage {
    background-color: var(--primary-color);
    border: none;
    padding: 0.5em 1em;
    color: var(--text-color);
    cursor: pointer;
    margin-left: 1em;
}
header {
    position: sticky;
    width: 100vw;
    top: 0;
    z-index: 2;
    margin-bottom: 1rem;
    background-color: var(--background-color);
    
    
}
.nav-flex {
    display: flex;
    justify-content: space-between;
    background: var(--background-color);
    box-shadow: 10px 10px 10px #0661a2;
    font-family: "Poppins-Bold";
}
.nav-logo {
    width: 50px;
    border: solid 4px whitesmoke;
    border-radius: 20%;
    margin-right: 0.5rem;
    box-shadow: 6px 5px 15px -3px rgba(0,0,0,0.1);
}
.nav-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 60%;
    margin: 0.5rem;
    font-size: 1.2rem;
}
.nav-left-link{
    display: none;
    flex-wrap: wrap;
    width: 40%;
    gap: 1rem;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--background-color);
}

.nav-logo {
    height: 3rem;
}

.nav-toggle {
    appearance: none;
    border: none;
    background-color: var(--background-color);
    cursor: pointer;
}

.nav-toggle-icon {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    position: relative;
    transition: transform 0.3s ease-out;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: inherit;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease-out;
}

.nav-toggle-icon::before {
    transform: translateY(-0.5rem);
}

.nav-toggle-icon::after {
        transform: translateY(0.5rem);
}

.nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 5rem;
        right: 0;
        width: 100%;
        background-color: var(--background-color-toggle);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-links.open {
        display: flex;
}

.nav-link {
    padding: 1rem;
    color: #333;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease-out;
}

.nav-link:hover {
    color: var(--accent-color-hover);
}

.nav-right {
    width: 50.66%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 1rem;
    font-size: 2rem;
    gap: 1rem;

}
.nav-link i {
    color: var(--primary-color);
    padding: 0.5rem;
}
.nav-link i:hover {
    color: var(--primary-color);
}
.nav-link i::after {
    content: "";
}
.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
}
.nav-link:hover {
    color: var(--accent-color-hover);
}
.nav-link-r {
    text-decoration: none;
    color: var(--primary-color);
}
.nav-link-r:hover {
    color: var(--accent-color-hover);
}
.nav-link-r::before {
    counter-reset: "";
}
.toggle-switch {
    position: relative;
    width: 50px;
    height: 25px;
    --light: #d8dbe0;
    --dark: #28292c;
    --link: rgb(27, 129, 112);
    --link-hover: rgb(24, 94, 82);
}

.switch-label {
    position: absolute;
    width: 100%;
    height: 25px;
    background-color: var(--dark);
    border-radius: 25px;
    cursor: pointer;
    border: 2px solid var(--dark);
}

.checkbox {
    position: absolute;
    display: none;
}

.slider {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.checkbox:checked ~ .slider {
    background-color: var(--light);
}

.slider::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -webkit-box-shadow: inset 12px -4px 0px 0px var(--light);
    box-shadow: inset 9px -4px 0px 0px var(--light);
    background-color: var(--dark);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.checkbox:checked ~ .slider::before {
    -webkit-transform: translateX(27px);
    -ms-transform: translateX(27px);
    transform: translateX(27px);
    background-color: var(--dark);
    -webkit-box-shadow: none;
    box-shadow: none;
}
aside#scroll-to-top {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 999;
    line-height: 1.3em;
}
.con-grid{
    display: grid;
    width: 100vw;
    grid-template-columns: 2fr 2fr ;
    grid-template-rows: auto;
    grid-template-areas: 
    "hero hero "
    "free1 free2"
    "skill skill"
    "post post"
    "tool tool"
    "guide guide"
    "footer footer";
}
.hero{
    grid-area: hero;
    text-align: center;
    font-size: 1rem;
    color: var(--primary-color);
}
.hero h1{
  margin: 0rem;
}
.free1{
  grid-area: free1;
  margin-left: 1rem;
}
.free1 input[type="checkbox"]{
  appearance:none;
  width:40px;
  height:16px;
  border:1px solid #aaa;
  border-radius:2px;
  background:#ebebeb;
  position:relative;
  display:inline-block;
  overflow:hidden;
  vertical-align:middle;
  transition: background 0.3s;
  box-sizing:border-box;
}
.free1 input[type="checkbox"]:after{
  content:'';
  position:absolute;
  top:-1px;
  left:-1px;
  width:14px;
  height:14px;
  background:white;
  border:1px solid #aaa;
  border-radius:2px;
  transition: left 0.1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.free1 input[type="checkbox"]:checked{
  background:#a6c7ff;
  border-color:#8daee5;
}
.free1 input[type="checkbox"]:checked:after{
  left:23px;
  border-color:#8daee5;
}

.free1 input[type="checkbox"]:hover:not(:checked):not(:disabled):after,
.free1 input[type="checkbox"]:focus:not(:checked):not(:disabled):after{
  left:0px;
}

.free1 input[type="checkbox"]:hover:checked:not(:disabled):after,
.free1 input[type="checkbox"]:focus:checked:not(:disabled):after{
  left:22px;
}

.free1 input[type="checkbox"]:disabled{
  opacity:0.5;
}
.free1 span{
    color: var(--text-color);
    margin-left: 0.2rem;
}
.free2{
  grid-area: free2;
  color: var(--text-color);
}
.btn-a {
    --colorbtn-a: var(--primary-color);
    display: inline-block;
    width: 8em;
    height: 2.6em;
    line-height: 2.5em;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--colorbtn-a);
    transition: color 0.5s;
    z-index: 1;
    font-size: 17px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--colorbtn-a);
}
.btn-a:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--colorbtn-a);
    height: 150px;
    width: 200px;
    border-radius: 50%;
}

.btn-a:hover {
    color: #edf2f5;
}

.btn-a:before {
    top: 100%;
    left: 100%;
    transition: all 1s;
}

.btn-a:hover:before {
    top: -30px;
    left: -30px;
}

.btn-a:active:before {
    color: var(--accent-color-hover);
    transition: background 1s;
}
.skill{
  grid-area: skill;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 3rem;
}
.skill h2{
  font-size: 1rem;
  color: var(--primary-color);
  margin-top: 3rem;
}
table, th, td {
    color: var(--text-color);
    border: thin solid;
    border-collapse: collapse;
    border-collapse: separate;
    margin-top: 2em;
    font-size: 1rem;
}
.post{
  grid-area: post;
}
.grup-gen{
  border-radius: 8px;
  background: var(--background-color);
  box-shadow:  9px 9px 18px var(--shadow-color1),
              -9px -9px 18px var(--shadow-color2);
  padding: 1rem;
  margin-bottom: 3rem;
}
.post h2{
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 2rem;
  color: var(--primary-color)
}
#nameList{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 900px;
  padding: 1rem;
  align-items: stretch;
}
.tool{
  grid-area: tool;
}
.guide{
  grid-area: guide;
}
.footer{
  grid-area: footer;
}
.bt-tb{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.bbody {
  width: 40vw;
  height: 60vh;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.button {
  width: 9.2em;
  height: 9.2em;
  border-radius: 50%;
  background-image:
  -webkit-radial-gradient(50% 0%, 8% 50%, rgba(255,255,255,0.2) 0%,rgba(255,255,255,0) 100%),
  -webkit-radial-gradient(50% 100%, 12% 50%, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 100%),
  -webkit-radial-gradient(0% 50%, 50% 7%, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 100%),
  -webkit-radial-gradient(100% 50%, 50% 5%, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 100%),
  -webkit-repeating-radial-gradient(50% 50%, 100% 100%, rgba(44,0,0,0) 0%, rgba(44,0,0,0) 3%,rgba(44,0,0,0) 3.5%),
  -webkit-repeating-radial-gradient(50% 50%, 100% 100%, rgba(255,30,30,0) 0%, rgba(255,30,30,0) 6%,rgba(255,30,30,0.1) 7.5%),
  -webkit-repeating-radial-gradient(50% 50%, 100% 100%, rgba(210,25,25,0) 0%, rgba(210,25,25,0) 1.2%,rgba(210,25,25,0.2) 2.2%),
  -webkit-radial-gradient(50% 50%, 200% 50%, rgb(130,10,10) 5%,rgb(120,10,10) 30%, rgb(170,17,17) 100%);
  box-shadow:  inset 0 0.25rem 0.3rem rgb(153,76,76);
}
.inner-frame {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background-color: rgb(0,0,0);
  box-shadow: inset 0 0.25rem 0.15rem rgba(199,199,199,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.frame {
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background-color: rgb(27,27,27);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:  rgba(0,0,0,0.15) 0 -5px 5px 3px,
  rgba(0,0,0,0.15) 0 5px 5px 3px,
  rgba(30,50,90,0.3) 0 5px 6px 4px,
  inset 0 0.25rem 0.15rem rgba(138,138,138,0.2);
}
.button:active {
  width: 9rem;
  height: 9rem;
  filter: brightness(97%);
  transform: rotate(0.5deg);
  box-shadow: inset rgba(61,0,0,0.7) 0 2px 2px 2px,
  inset rgba(61,0,0,0.15) 0 2px 2px 5px;
}
.glass-wrap {
  width: 16rem;
  height: 13.5rem;
  border-radius: 5%;
  overflow:hidden;
}
.glass {
  width: 100%;
  height: 100%;
  left: 4px;
  top: 4px;
  background: rgba(180,180,180,0.3);
  filter: blur(10px);
}
.cover-wrap {
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  box-shadow: 8px 8px 5px rgba(0,0,0,0.3),
  0px 5px 6px 4px rgba(29,50,90,0.3),
  inset 5px -5px 0px 5px rgba(200,200,200,0.15),
  inset -2px -2px 0px 5px rgba(195,195,195,0.15);
  z-index: 3;
  border-radius: 5%;
  cursor: pointer;
}
.hinge {
  width: 1.5rem;
  height: 5rem;
  position: absolute;
  top:50%;
  left:0%;
  transform: translate(-100%,-50%);
  border-radius: 6% 1% 1% 6%;
  background: radial-gradient(rgb(112,112,112), rgb(139,139,139));
  box-shadow: 0px 5px 5px rgba(0,0,0,0.1),
  0px 5px 5px 5px rgba(29,50,90,0.3),
  inset rgba(44,44,44,0.25) -1px -1px 1px 1px;
  z-index: 1;
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.bolt {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: radial-gradient(rgb(120,120,120), rgb(80,80,80));
  margin: 10px 0px 10px 0px;
  box-shadow: 0px 0px 1px rgba(0,0,0,1),
  inset rgba(200,200,200,0.45) 5px 0px 5px 5px;
  z-index: 2;
}
.button-wrap {
  position: relative;
}
.cover-wrap.active {
  width: 30%;
  left:-30%;
  overflow:hidden;
  box-shadow: 15px 15px 6px rgba(0,0,0,0.5),
  0px 5px 6px 4px rgba(29,50,90,0.3),
  inset 5px -5px 0px 5px rgba(200,200,200,0.15),
  inset -2px -2px 0px 5px rgba(195,195,195,0.15),
  inset 0px -65px 5px 7px rgba(0,0,0,0.2),
  inset 0px 65px 5px 7px rgba(0,0,0,0.2);
}
#output{
  display: flex;
  justify-content: center;
  font-size: 50px;
  height: 90px;
  padding-bottom: 2rem;
}
  #menu-button {
    background-color: #0096ff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
}
footer{
    background: var(--background-color-footer);
}
.links-footer a {
    text-decoration: none;
    color: var(--text-color-footer);
}
.links {
    width: 100%;
    color: var(--text-color);
    font-size: 12px;
}
.links-inner {
    display: flex;
    justify-content: space-between;
    margin: 1rem;
    padding: 0;
}
.links-inner h3 {
    color: var(--text-color);
}
.footer-links-wi{
    display: flex;
    flex-direction: column;
}
.links li {
    line-height: 2;
    list-style: none;
}
.footer ul {
    display: flex;
    flex-wrap: wrap;
}
.links-footer {
    display: flex;
    grid-area: footer;
    
}
.links-footer a:hover {
    color: black;
}
.footer-links-sm{
    display: flex;
    font-size: 2rem;
    margin-right: 5rem;
}
.footer-links-sm a{
    padding-right: 1rem;
}
@media only screen and (min-width: 1440px) {
header {
    position: sticky;
    width: 100vw;
    top: 0;
    z-index: 2;
    margin-bottom: 1rem;
    background-color: var(--background-color);
    
    
}
.nav-flex {
    display: flex;
    justify-content: space-between;
    background: var(--background-color);
    box-shadow: 10px 10px 10px #0661a2;
    font-family: "Poppins-Bold";
}
.nav-logo {
    width: 50px;
    border: solid 4px whitesmoke;
    border-radius: 20%;
    margin-right: 0.5rem;
    box-shadow: 6px 5px 15px -3px rgba(0,0,0,0.1);
}
.nav-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 80%;
    margin: 0.5rem;
    font-size: 1.2rem;
}
.nav-left-link{
    display: flex;
    flex-wrap: wrap;
    width: 40%;
    gap: 1rem;
}
.nav-container{
    display: none;
}

.nav-right {
    width: 10.66%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-right: 1rem;
    font-size: 2rem;

}
.nav-link i {
    color: var(--primary-color);
    padding: 0.5rem;
}
.nav-link i:hover {
    color: var(--primary-color);
}
.nav-link i::after {
    content: "";
}
.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
}
.nav-link:hover {
    color: var(--accent-color-hover);
}
.nav-link-r {
    text-decoration: none;
    color: var(--primary-color);
}
.nav-link-r:hover {
    color: var(--accent-color-hover);
}
.nav-link-r::before {
    counter-reset: "";
}
.toggle-switch {
    position: relative;
    width: 50px;
    height: 25px;
    --light: #d8dbe0;
    --dark: #28292c;
    --link: rgb(27, 129, 112);
    --link-hover: rgb(24, 94, 82);
}

.switch-label {
    position: absolute;
    width: 100%;
    height: 25px;
    background-color: var(--dark);
    border-radius: 25px;
    cursor: pointer;
    border: 2px solid var(--dark);
}

.checkbox {
    position: absolute;
    display: none;
}

.slider {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.checkbox:checked ~ .slider {
    background-color: var(--light);
}

.slider::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -webkit-box-shadow: inset 12px -4px 0px 0px var(--light);
    box-shadow: inset 9px -4px 0px 0px var(--light);
    background-color: var(--dark);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.checkbox:checked ~ .slider::before {
    -webkit-transform: translateX(27px);
    -ms-transform: translateX(27px);
    transform: translateX(27px);
    background-color: var(--dark);
    -webkit-box-shadow: none;
    box-shadow: none;
}
aside#scroll-to-top {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 999;
    line-height: 1.3em;
}
.con-grid{
    display: grid;
    width: 100vw;
    grid-template-columns: 1fr 2fr 2fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: 
    "free1 hero hero free2"
    "free1 skill skill free2"
    "free1 post post free2"
    "free1 tool tool free2"
    "free1 guide guide free2"
    "footer footer footer footer";
}
.hero{
    grid-area: hero;
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
}
.hero h1{
  margin: 1rem;
}
.free1{
  grid-area: free1;
  margin-left: 3rem;
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.free1 input[type="checkbox"]{
  appearance:none;
  width:40px;
  height:16px;
  border:1px solid #aaa;
  border-radius:2px;
  background:#ebebeb;
  position:relative;
  display:inline-block;
  overflow:hidden;
  vertical-align:middle;
  transition: background 0.3s;
  box-sizing:border-box;
}
.free1 input[type="checkbox"]:after{
  content:'';
  position:absolute;
  top:-1px;
  left:-1px;
  width:14px;
  height:14px;
  background:white;
  border:1px solid #aaa;
  border-radius:2px;
  transition: left 0.1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.free1 input[type="checkbox"]:checked{
  background:#a6c7ff;
  border-color:#8daee5;
}
.free1 input[type="checkbox"]:checked:after{
  left:23px;
  border-color:#8daee5;
}

.free1 input[type="checkbox"]:hover:not(:checked):not(:disabled):after,
.free1 input[type="checkbox"]:focus:not(:checked):not(:disabled):after{
  left:0px;
}

.free1 input[type="checkbox"]:hover:checked:not(:disabled):after,
.free1 input[type="checkbox"]:focus:checked:not(:disabled):after{
  left:22px;
}

.free1 input[type="checkbox"]:disabled{
  opacity:0.5;
}
.free2{
  grid-area: free2;
  margin-left: 1rem;
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.free2 ul{
  margin-bottom: 1rem;
}
.free h3{
  margin-top: 1rem;
}
.free p{
  margin-bottom: 1rem;
}
.free2 li{
  list-style: none;
}
#blocked-names-container{
  margin-bottom: 1rem;
  list-style: none;
}
.skill{
  grid-area: skill;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 3rem;
}
.skill h2{
  font-size: 2rem;
  color: var(--primary-color);
  margin-top: 3rem;
  
}
table, th, td {
    border: thin solid;
    border-collapse: collapse;
    border-collapse: separate;
    margin-top: 2em;
    font-size: 2rem;
}
.post{
  grid-area: post;
}
.grup-gen{
   border-radius: 8px;
  background: var(--background-color);
  box-shadow:  9px 9px 18px var(--shadow-color1),
              -9px -9px 18px var(--shadow-color2);
  padding: 1rem;
  margin-bottom: 3rem;
}
.post h2{
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 2rem;
}
#nameList{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 300px;
  padding: 1rem;
}
.tool{
  grid-area: tool;
}
.guide{
  grid-area: guide;
}
.footer{
  grid-area: footer;
}

#menu-button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
}
footer{
    background:  var(--background-color-footer);
}
.links-footer a {
    text-decoration: none;
    color:  var(--text-color-footer);
}
.links {
    width: 100%;
    color: var(--text-color);
    font-size: 12px;
}
.links-inner {
    display: flex;
    justify-content: space-between;
    margin: 1rem;
    padding: 0;
}
.footer-links-wi{
    display: flex;
    flex-direction: column;
}
.links li {
    line-height: 2;
    list-style: none;
}
.footer ul {
    display: flex;
    flex-wrap: wrap;
}
.links-footer {
    display: flex;
    grid-area: footer;
    
}
.links-footer a:hover {
    color: black;
}
.footer-links-sm{
    display: flex;
    font-size: 3rem;
    margin-right: 5rem;
}
.footer-links-sm a{
    padding-right: 1rem;
}
}

