:root{
    --backgroundLight: rgb(255, 255, 255);
    --accentLight: rgb(213, 213, 218);
    --textLight: rgb(97, 97, 107);
    --backgroundDark:rgb(36, 36, 39);
    --accentDark:rgb(53, 53, 58);
    --textDark:rgb(206, 206, 219);
    --green: limegreen;
    --darkGreen:rgb(45, 184, 45);
}

body {
    background-color: var(--backgroundLight);
    color: var(--textLight);
    font-family: "onest", sans-serif;
    font-weight: bold;
    display: flow-root;
    transition: background-color 0.3s, color 0.3s;
}

body.dark-theme {
    background-color: var(--backgroundDark);
    color: var(--textDark);
}

#title {
    margin-left: 15px;
    color: limegreen;
    background-color: transparent;
    font-family: "onest", sans-serif;
    font-weight: bold;
    border-style: none;
    border-radius: 10px;
    font-size: 32px;
    height: 84px;
    transition: ease 0.2s;
}

#title:hover {
    cursor: pointer;
}

#topBar {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height:90px;
}

.downloadButton {
    border-radius: 1000px;
    border-style: none;
    background-color: limegreen;
    height: 45px;
    width: 140px;
    font-family: "onest", sans-serif;
    font-weight: bolder;
    font-size: 15px;
    transition: ease 0.2s;
}

.downloadButton:hover {
    background-color: rgb(45, 184, 45);
    cursor: pointer;
    transform: scale(1.1);
}

#search {
    background-color: var(--accentLight);
    border-style: none;
    border-radius: 1000px;
    color: var(--textLight);
    height: 40px;
    width:25%;
    font-family: "onest", sans-serif;
    font-weight: bold;
    padding-left: 25px;
    margin-left: 20px;
}

#search.dark-theme{
    background-color: var(--accentDark);
    color: rgb(206, 206, 219);
}

#search:focus {
    outline: none;
    border: none;
}

#searchIcon{
    width:18px;
    height:18px;
}

#searchButton{
    background-color: var(--accentLight);
    border-style: none;
    border-radius: 1000px;
    color: var(--textLight);
    height: 42px;
    width:52px;
    font-family: "onest", sans-serif;
    font-weight: bold;
    margin-left: -35px;
    transition: ease 0.2s;
    padding:10px;
}

#searchButton.dark-theme{
    background-color: var(--accentDark);
    color: rgb(206, 206, 219);
}

#searchButton:hover{
    cursor: pointer;
}

#textBanner {
    text-align: center;
    font-size: 40px;
    margin-top: 25px;
}

.exploreButton {
    border-radius: 1000px;
    border-style: none;
    background-color: limegreen;
    height: 50px;
    width: 250px;
    font-family: "onest", sans-serif;
    font-weight: bolder;
    font-size: 20px;
    transition: ease 0.2s;
    margin-top: 50px;
}

.exploreButton:hover {
    background-color: rgb(45, 184, 45);
    cursor: pointer;
    transform:scale(1.05);
}

#exporeButtonDiv {
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

.copyrightfr {
    text-align: center;
    font-weight: bold;
}

.tagsText {
    font-size: 18px;
    color: var(--textLight);
}

.tagsText.dark-theme{
    color: rgb(206, 206, 219);
}

.tag {
    border-radius: 10px;
    padding: 5px 10px;
    margin-left: 5px;
    color: var(--textLight);
    font-size: 18px;
}

.tag.dark-theme{
    color: rgb(206, 206, 219);
}

#tagsDiv {
    position: absolute;
    bottom: 0px;
    left: 400px;
    transform: translateY(-50%);
    width:30%;
    height:20%;
}

.creatorText {
    color: var(--textLight);
    font-family: "onest", sans-serif;
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    bottom: 0px;
    right: 40px;
    transform: translateY(-50%);
    border-radius: 10px;
    width:30%;
    text-align:right;
    height:20%;
}

.creatorText.dark-theme{
    color: rgb(206, 206, 219);
}


#filtersDiv {
    margin-top: 20px;
    text-align:left;
}

#tagFilter {
    background-color: var(--accentLight);
    border-style: none;
    border-radius: 1000px;
    height: 35px;
    width: 130px;
    font-family: "onest", sans-serif;
    font-weight: bold;
    font-size:14px;
    color: var(--textLight);
    padding-left: 10px;
    margin-left: 5px;
    cursor:pointer;
    outline:none;
}

#tagFilter.dark-theme{
    background-color: var(--accentDark);
    color: rgb(206, 206, 219); 
}

#tagFilterText {
    border-style: none;
    border-radius: 1000px;
    height: 35px;
    width: 130px;
    font-family: "onest", sans-serif;
    font-weight: bold;
    color: var(--textLight);
    padding-left: 10px;
    margin-left: 5px;
}

#tagFilterText.dark-theme{
    color: rgb(206, 206, 219);
}

#selectTagDiv{
    display:inline-block;
    background-color:var(--accentLight);
    border-style: none;
    border-radius: 1000px;
    font-size:14px;
    cursor:pointer;
    user-select: none;
}

#selectTagDiv.dark-theme{
    background-color: var(--accentDark);
    color: rgb(206, 206, 219); 
}

#goButton {
    background-color: var(--accentLight);
    border-style: none;
    border-radius: 1000px;
    height: 35px;
    width: 60px;
    font-family: "onest", sans-serif;
    font-weight: bold;
    color: var(--textLight);
    padding-left: 5px;
    margin-left: 5px;
    transition: ease 0.2s;
}

#goButton.dark-theme{
    background-color: var(--accentDark);
    color: rgb(206, 206, 219); 
}

#goButton:hover {
    cursor: pointer;
}

.tagFilterItem {
    font-family: "onest", sans-serif;
    font-weight: bold;
    color: var(--textLight);
}

.tagFilterItem.dark-theme{
    color: rgb(206, 206, 219);
}

#uploadButton{
    right: 30px;
}

#FAQ {
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    margin-bottom: 50px;
}

#answerOne, #answerTwo, #answerThree, #answerFour, #answerFive{
    border-radius: 27px;
    border-style: none;
    background-color: var(--accentLight);
    width: 800px;
    font-family: "onest", sans-serif;
    font-weight: bold;
    font-size: 20px;
    transition: ease 0.2s;
    text-align: center;
    color: var(--textLight);
    display: none;
    padding-bottom: 10px;
    padding-top: 50px;
    margin-top:-50px;
}

.answerText{
    margin-left:10px;
    margin-right:10px;
}

.FAQLink{
    color:rgb(91, 136, 235);
}

.FAQLink.dark-theme{
    color:rgb(206, 206, 219);
}

.question {
    border-radius: 1000px;
    border-style: none;
    background-color: var(--accentLight);
    height: 50px;
    width: 800px;
    font-family: "onest", sans-serif;
    font-weight: bold;
    font-size: 20px;
    transition: ease 0.2s;
    text-align: center;
    color: var(--textLight);
    padding: 10px;
    margin-top: 15px;
}

.question.dark-theme {
    background-color: var(--accentDark);
    color: var(--textDark);
}

.question:hover {
    background-color: rgb(189, 189, 196);
    cursor: pointer;
}

.question:hover.dark-theme {
    background-color: rgb(59, 59, 65);
    cursor: pointer;
}

#copyrightDiv {
    color: #262626;
    bottom: 0;
    text-align: center;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 80px;
    width: 90%;
}

#discordLink {
    color: #5865F2;
}

#uploadSection {
    margin-left: 20px;
    margin-bottom: 20px;
}

@media (max-width:1400px){
    .pageWrapper{
        padding-left:5%!important;
        padding-right:5%!important;
    }
    #layoutSwitchDiv{
        right:calc(5% + 40px)!important;
    }
}

@media (max-width:1350px){
    #layoutSwitchDiv{
        display:none;
    }
}

@media (max-width:1000px){
    .image{
        height:200px!important;
        width:200px!important;
    }
    #tagsDiv{
        left:250px!important;
    }
    #titleText{
        display:none;
    }
}

@media (max-width: 800px) {
    #search, #search.dark-theme {
        margin-right: 40px;
        width:70%;
        margin-top:20px;
    }

    #searchButton{
        margin-top:20px;
        margin-left:-80px;
        margin-right:20px;
    }

    #FAQButton {
        margin-top:33px;
        margin-right:180px!important;;
    }

    .image {
        height: 200px!important;
        width: 350px!important;
        margin: 0;
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        top: 20px;
    }

    .schematicBox {
        height: 420px!important;
        align-content: center;
    }

    .downloadButton {
        width: 350px!important;
        left: 50%;
        transform: translate(-50%);
        position: absolute;
        text-align:center;
        bottom:90px;
    }

    .downloadButton:hover{
        transform: translate(-50%)!important;
    }

    .creatorText {
        height: 37px;
        width: 38%;
        position: absolute;
        right: 10%;
        bottom:15px;
        text-align:left!important;
    }

    .schematicBoxTitleDiv {
        position: absolute;
        top:220px;
        text-align:center!important;
        width:100%;
        left:0px;
    }

    .schematicBoxTitle{
        font-size:24px!important;
    }

    .schematicBoxTitle{
        font-size:24px!important;
    }

    #tagsDiv {
        height: 37px;
        width: 38%;
        position: absolute;
        left: 10%!important;
        bottom:15px;
        text-align:left!important;
    }
    #titleText{
        display:none;
    }
    #topBar{
        height:150px!important;
        display: flex;
        align-items: stretch!important;
        position: relative;
        width: 100%;
    }
    #uploadButton{
        margin-top:33px;
        right:5%;
    }

    #schematicButton{
        left:5%;
    }

    #texturePackButton{
        text-align:center;
        left:10%;
    }

    .switch-slider {
        width: 64px!important;
        height: 32px!important;
        right:20px!important;
        margin-top:188px!important;
        border-radius:100px!important;
    }

    .switch-knob {
        width: 24px!important;
        height: 24px!important;
        left:4px!important;
        top:4px!important;
    }

    #ThemeSwitcherButton:checked + .switch-slider .switch-knob {
    left: calc(100% - 28px)!important;
}

    .schematicBoxTitle{
        word-wrap: break-word;
    }
    #FAQ{
        margin: 0;
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        margin-bottom: 50px;
        width:90%;
    }
    .question{
        width:100%;
        height:auto;
    }
    .answer{
        width:100%!important;
        height:auto;
    }

    .topBarButton{
        margin-top:33px;
    }

    #exploreButtonFr{
        margin-top:150px;
    }

    #exploreTpacksButton{
        margin-top:30px!important;
    }

    #schematicArchiveBanner{
        background-color: var(--accentLight);
        color: black;
        height:50px;
        width:100%!important;
        justify-content:center;
        font-size:16px!important;
        padding-left:0px!important;
    }

    #layoutSwitchDiv{
        display:none;
    }
}

@media (max-width:500px){
    #footerfr{
        justify-content: left!important;
        flex-wrap:wrap!important;
        gap:20px!important;
    }
}

/* Mobile UI */
@media (max-width: 450px) {
    .image {
        height: 180px!important;
        width: 320px!important;
    }

    .schematicBox {
        height: 420px!important;
        align-content: center;
        width:96%!important;
    }

    .downloadButton {
        width: 320px!important;
    }

    .creatorText {
        text-align:left!important;
        font-size:16px!important;
    }

    .schematicBoxTitleDiv {
        top:215px;
    }

    .schematicBoxTitle{
        font-size:22px!important;
    }

    #tagsDiv {
        text-align:left!important;
    }

    .tag{
        font-size:16px!important;
    }

    .tagsText{
        font-size:16px!important;
    }

    #titleText{
        display:none;
    }
    #topBar{
        height:150px!important;
        display: flex;
        align-items: stretch!important;
        position: relative;
        width: 100%;
    }
    #uploadButton{
        margin-top:33px;
        right:5%!important;
    }

    #schematicButton{
        left:0%!important;
    }
    #texturePackButton{
        text-align:center;
        left:0%!important;
    }

    .switch-slider {
        width: 64px!important;
        height: 32px!important;
        right:20px!important;
        margin-top:188px!important;
        border-radius:100px!important;
    }

    .switch-knob {
        width: 24px!important;
        height: 24px!important;
        left:4px!important;
        top:4px!important;
    }

    #ThemeSwitcherButton:checked + .switch-slider .switch-knob {
    left: calc(100% - 28px)!important;
    }

    #pageText{
    margin-left:10%!important;
    margin-right:10%!important;
    }

    .schematicBoxTitle{
        word-wrap: break-word;
    }
    #FAQ{
        margin: 0;
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        margin-bottom: 50px;
        width:90%;
    }
    .question{
        width:100%;
        height:auto;
    }
    .answer{
        width:100%!important;
        height:auto;
    }

    .topBarButton{
        margin-top:33px;
    }

    #exploreButtonFr{
        margin-top:150px;
    }

    #exploreTpacksButton{
        margin-top:30px!important;
    }

    #schematicArchiveBanner{
        background-color: var(--accentLight);
        color: var(--textLight);
        height:50px;
        width:100%!important;
        justify-content:center;
        font-size:14.5px!important;
        padding-left:0px!important;
    }

    .copyrightfr{
        font-size:20px!important;
    }
}


#themeToggle {
    background-color: transparent;
    color: rgb(206, 206, 219);
    transition: ease 0.2s;
}

#themeToggle:hover {
    color: rgb(179, 179, 192);
    cursor: pointer;
}

#title {
    margin-left: 15px;
    color: limegreen;
    background-color: transparent;
    font-family: "onest", sans-serif;
    font-weight: bold;
    border-style: none;
    border-radius: 10px;
    font-size: 32px;
    height: 84px;
    transition: ease 0.2s;
}

#title:hover {
    cursor: pointer;
}

.image {
    height: 200px;
    float: left;
    margin-right: 20px;
    border-radius: 20px;
    width: 350px;
    object-fit: cover;
    object-position: center;
}

.schematic-card{
    margin-top:20px;
    width:95%;
}

.schematicBox {
    border-radius:28px;
    border:none;
    padding-left:30px;
    background-color:var(--accentLight);
    height: 250px;
    align-content: center;
    transition: ease 0.3s;
    position: relative;
    width: 100%;
    text-align:left;
}

.schematicBox.dark-theme{
    background-color: var(--accentDark);
}

#ThemeSwitcherButton {
    background-color: transparent;
    color: rgb(206, 206, 219);
    font-family: "Onest", sans-serif;
    font-weight: bold;
    border-radius: 50%;
    border: 2px solid rgba(206, 206, 219, 0.5);
    height: 50px;
    width: 50px;
    font-size: 24px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    margin-left: 10px;
    margin-bottom:20px;
}

#ThemeSwitcherButton:hover {
    color: var(--backgroundLight);
    background: linear-gradient(45deg, #00aaff, #8a2be2);
    border-color: transparent;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

#ThemeSwitcherButton:active {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}

#homeDiv{
    text-align: center;
}

#infoBanner{
    margin-bottom:30px;
}

#uploadForm{
    margin-top:20px;
}

.dark-theme #uploadForm {
    filter: invert(1) hue-rotate(180deg);
}


#logoImage{
    height:40px;
}

#feedbackForm{
    margin-top:20px;
}

.dark-theme #feedbackForm {
    filter: invert(1) hue-rotate(180deg);
}

.pageButton{
    border-radius: 1000px;
    border-style: none;
    background-color: limegreen;
    height: 45px;
    width: 100px;
    font-family: "onest", sans-serif;
    font-weight: bolder;
    font-size: 15px;
    transition: ease 0.1s;
    margin-top:20px;
    margin-right:10px;
}

.pageButton:hover{
    background-color: rgb(40, 163, 40);
    cursor: pointer;
}

#pageButtonDiv{
    text-align:left;
}

#exploreTpacksButton{
    margin-left:10px;
}

#schematicButton{
    margin-left:15px;
}

#texturePackButton{
    margin-left:165px;
}

.topBarButton{
    background-color: transparent;
    color: var(--textLight);
    font-family: "onest", sans-serif;
    font-weight: bold;
    border-radius: 10px;
    border:none;
    padding:10px;
    font-size: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: ease 0.2s;
}

.topBarButton.dark-theme{
    color: rgb(206, 206, 219);
}

.topBarButton:hover {
    color: rgb(179, 179, 192);
    cursor: pointer;
    transform:translateY(-50%) scale(1.1);
    text-decoration:underline;
    transition:ease 0.2s;
}

.topBarButton:hover::after {
  animation: expand-underline 1s ease-in-out forwards;
}

keyframes expand-underline {
  from {
    left: 50%;
    width: 10%; /* initial width, can be set to a small value */
  }
  to {
    left: -50%;
    width: 200%;
  }
}

#bloxdLogo{
    height:50px;
    width:50px;
    vertical-align: middle;
    margin-right:10px;
    border-radius:10px;
}

.downloadIcon{
    height:15px;
    vertical-align: middle;
}

.uploadButtonFr{
    color: var(--textLight);
    background-color: var(--accentLight);
    font-family: "onest", sans-serif;
    font-weight: bold;
    border-radius:1000px;
    border:none;
    padding:10px;
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: ease 0.2s;
    width:300px;
    margin-top:30px;
}

.uploadButtonFr.dark-theme{
    background-color: var(--accentDark);
    color: rgb(206, 206, 219);
}

.uploadButtonFr:hover {
    color: rgb(179, 179, 192);
    cursor: pointer;
    transform:translateY(-50%) scale(1.05);
}

#leftButton{
    margin-right:10px;
}

#middleButtons{
    text-align: center;
}

.switch-slider {
    width: 48px;
    height: 24px;
    background: #cccccc;
    border-radius: 12px;
    position: absolute;
    transition: 0.5s;
    right:148px;
    transform: translateY(-50%);
}

.switch-knob {
    position: absolute;
    left: 3px;
    top: 3px;
    width: 18px;
    height: 18px;
    background: var(--backgroundLight);
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.switch-slider:hover{
    cursor:pointer;
}

#ThemeSwitcherButton:checked + .switch-slider {
    background: #2196F3;
}

#ThemeSwitcherButton:checked + .switch-slider .switch-knob {
    left: calc(100% - 22px);
}

.theme-label {
    color: var(--sidebar-text);
    font-size: 14px;
    white-space: nowrap;
}
input[type="checkbox"]#ThemeSwitcherButton {
    opacity: 0;
    position: absolute;
    left: -9999px;
}

.theme-switch-label{
    display: inline-block;
}

.answer{
    background-color: var(--accentLight);
    color: black;
}

.answer.dark-theme{
    background-color:var(--accentDark)!important;
    color:rgb(206, 206, 219)!important;
}

.archiveLink{
    color:rgb(91, 136, 235);
}

#schematicArchiveBanner{
    background-color: var(--accentLight);
    color: black;
    height:50px;
    display:flex;
    position:relative;
    align-items: center;
    width:95%;
    margin-top:20px;
    border-radius:1000px;
    font-size:18px;
    padding-left:30px;
}

#schematicArchiveBanner.dark-theme{
    background-color: var(--accentDark)!important;
    color:rgb(206, 206, 219)!important;
}

.pageWrapper{
    text-align:center;
    padding-left:15%;
    padding-right:15%
}

.schematicBoxTitle{
    color:var(--textLight);
    font-size:28px;
}

.schematicBoxTitle.dark-theme{
    color:var(--textDark);
}

/* Grid layout schematic cards */

.schematic-container.gridLayout{
    display:flex;
    flex-wrap: wrap;
    gap:20px;
    margin-top:20px;
    box-sizing:border-box;
}

.grid-schematic-card{
    box-sizing:border-box;
    width:calc(23.75% - 10px);
}

.gridSchematicBox{
    border-radius:28px;
    box-sizing:border-box;
    padding:30px;
    height:540px;
    background-color:var(--accentLight)
}

.gridSchematicBox.dark-theme{
    background-color:var(--accentDark)
}

.gridImage{
    width:100%;
    height:160px;
    border-radius:20px;
    overflow:hidden;
    object-fit:cover;
}

.gridSchematicBoxTitleDiv{
    width:90%;
    text-align:left;
    font-size:28px;
    height:100px;
}

.gridSchematicBoxTitle{
    color:var(--textLight);
    font-size:24px;
}

.gridSchematicBoxTitle.dark-theme{
    color:var(--textDark);
}

.gridDownloadButton{
    border-radius: 1000px;
    border-style: none;
    background-color: limegreen;
    height: 45px;
    width: 100%;
    font-family: "onest", sans-serif;
    font-weight: bolder;
    font-size: 15px;
    transition: ease 0.2s;
    position:relative;
    left: 50%;
    transform: translate(-50%);
    bottom: -20px;
}

.gridDownloadButton:hover{
    background-color: rgb(45, 184, 45);
    cursor: pointer;
    transform: translate(-50%) scale(1.1);
}

#gridTagsDiv{
    position:relative;
    text-align:left;
    bottom: -60px;
    left:0px;
    font-size:18px;
    height:40px;
}

.gridCreatorText{
    position:relative;
    text-align:left;
    bottom: -80px;
    left:0px;
    font-size:18px;
    height:40px;
}

.gridCreatorText.dark-theme{
    color:var(--textDark);
}

/* Layout Switch */

#layoutSwitchDiv{
    position:absolute;
    height:35px;
    right:calc(15% + 40px);
    top:112px;
}

#layoutSwitcherButton:hover {
    color: var(--backgroundLight);
    background: linear-gradient(45deg, #00aaff, #8a2be2);
    border-color: transparent;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

#layoutSwitcherButton:active {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}

.layout-slider {
    position:relative;
    width: 100px;
    height: 35px;
    background: var(--accentDark);
    border-radius: 1000px;
    transition: 0.5s;
    transform: translateY(-50%);
    user-select:none;
}

.layout-knob {
    position: absolute;
    left: 5px;
    top: 5px;
    width: 45px;
    height: 25px;
    background: rgba(92, 255, 92, 0.452);
    border-radius: 1000px;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.layout-slider:hover{
    cursor:pointer;
}

#layoutSwitcherButton:checked + .layout-slider .layout-knob {
    left: calc(100% - 50px);
}

.layout-label {
    color: var(--sidebar-text);
    font-size: 14px;
    white-space: nowrap;
}
input[type="checkbox"]#layoutSwitcherButton {
    opacity: 0;
    left: -9999px;
}

.layout-switch-label{
    display: inline-block;
}

#listSVG{
    position:relative;
    fill:var(--textDark);
    height:18px;
    width:18px;
    top:9px;
    left:-11px;
}

#gridSVG{
    position:relative;
    fill:var(--textDark);
    height:18px;
    width:18px;
    top:9px;
    right:-11px;
}

#pageText{
    font-size:18px;
    text-align:left;
    margin-left:20%;
    margin-right:20%;
}

#footerfr{
    text-align:center;
    position: relative;
    width:100%;
    margin-top:30px;
    display:flex;
    justify-content:space-between;
}

.footerButton {
    background-color: transparent;
    color: var(--textLight);
    font-family: "onest", sans-serif;
    font-weight: bold;
    border:none;
    padding:10px;
    font-size: 20px;
    top: 50%;
    transition: ease 0.2s;
    text-decoration:none;
    width: calc(100% / 5);
}

.footerButton.dark-theme{
    color:var(--textDark)
}

.footerButton:hover {
    color: rgb(179, 179, 192);
    cursor: pointer;
    font-size:22px;
    text-decoration:underline 2px;
    transition:ease 0.2s;
}