@import url('https://fonts.googleapis.com/css2?family=Corinthia:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');


:root {
    --base:#160812;
    --sec: #fdddbc;
    --back:#ffbe79;
    --hover:#310d0c;
    --lines:#611817;

    --font_Primary : 'Teko', sans-serif;
    --font_Secundary: 'Corinthia', sans-serif;
}

body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    background-color: var(--base);
    flex-direction: column;
    overflow: hidden; 
}

.headerMenu {
    display: flex;
    width: 100vw;
    height: 4rem;
    background-color: var(--back);
    border-bottom: 3px solid var(--back);
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(90deg,#160812 0%, #310d0c 25%, #ffbe79 50%,  #310d0c 75%, #160812 100%);
}

.headerLogos {
    display: flex;
    width: 100vw;
    height: 10vh;
    justify-content: center;
    align-items: center;
}

.headerLink {
    width: 100vw;
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: var(--sec);
    font-size: 3rem;
    cursor: pointer;
    font-family: var(--font_Primary);
    transition: all 0.4s;
    
}

.headerLink:hover {
    color: var(--lines);
    font-size: 3.05rem;
    cursor: pointer;
}

.logoMenu {
    display: flex;
    height: 100%;
    margin-top: 10vh;
  
}

.logoBorder {
    position: fixed;
    display: flex;
    height: 10vh;
    margin-top: 10vh;
    border: 3px solid var(--back);
    border-radius: 100%;
    z-index: -1;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 60vh;
    font-family: var(--font_Primary);
}

.title {
    font-size: 6rem;
    color: var(--sec);
    margin: 0px;
    margin-top: 13vh
}

.serverInvite {
    border: 3px solid var(--back);
    width: 30%;
    text-align: center;
    border-radius: 15px;
    font-size: 2.5rem;
    font-weight: 600;
    padding: 2%;
    text-decoration: none;
    font-family: var(--font_Primary);
    transition: all 0.5s;
    color: var(--sec);
    background-size: 300% 300%;
    background-image: linear-gradient(-45deg, #160812 0%, #310d0c 47%, #ffbe79 50%,  #310d0c 53%, #160812 100%);
    -webkit-animation: animateColor 7s ease infinite;
            animation: animateColor 7s ease infinite;
  }
  
  @-webkit-keyframes animateColor {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  @keyframes animateColor {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

.serverInvite:hover{
    background-color: var(--back);
}

strong {
    margin-left: 0.4rem;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: 4rem;
    background-color: var(--back);
    color: var(--base);
    border-top: 3px solid var(--back);
    font-family: var(--font_Secundary);
    text-align: center;
    font-size: 1.8rem;
    background-image: linear-gradient(90deg,#160812 0%, #310d0c 25%, #ffbe79 50%,  #310d0c 75%, #160812 100%);
}

.signature {
    text-align: center;
    cursor: wait;
}

/*-------------------------------Responsivity--------------------------------*/

@media only screen and (max-width: 767px) {
    .headerMenu {
        display: flex;
        width: 100vw;
        justify-content: space-between;
        align-items: center;
    }

    .headerLogos {
        display: flex;
        width: 5vw;
        height: 10vh;
        justify-content: center;
        align-items: center;
    }
    
    .headerLink {
        display: flex;
        text-decoration: none;
        font-size: 2rem;
        cursor: pointer;
        transition: all 0.4s;
    }
    
    .headerLink:hover {
        font-size: 2.05rem;
        cursor: pointer;
    }

    .title {
        font-size: 5rem;
        margin: 0px;
        margin-top: 13vh
    }

    .serverInvite {
        width: 70%;
        text-align: center;
        border-radius: 5px;
        font-size: 2rem;
        font-weight: 600;
        padding: 6%;
        text-decoration: none;
        transition: all 0.5s;
    }

    footer {
        position: fixed;
        bottom: 0;
        width: 100vw;
        text-align: center;
        font-size: 1.4rem;
    }

}

@media only screen and (min-width: 768px) and (max-width:1023px) {

    .serverInvite {
        width: 70%;
        text-align: center;
        border-radius: 5px;
        font-size: 2rem;
        font-weight: 600;
        padding: 6%;
        text-decoration: none;
        transition: all 0.5s;
    }

    footer {
        position: fixed;
        bottom: 0;
        width: 100vw;
        text-align: center;
        font-size: 1.6rem;
    }
};
    