@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:#1e1f22;
    --sec: #fdddbc;
    --back:#5865f2;
    --hover:#0c0016;
    --lines:#cacaca;

    --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-image: linear-gradient(90deg,#5865f2 0%, #0c0016 15%,#5865f2 30%, #5865f2 50%, #5865f2 70%, #0c0016 85%, #5865f2 100%);
    border-bottom: 3px solid var(--lines);
    justify-content: space-between;
    align-items: center;
}

.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(--lines);
    font-size: 3rem;
    cursor: pointer;
    font-family: var(--font_Primary);
    transition: all 0.5s;
}

.headerLink:hover {
    color: var(--back);
    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(--lines);
    border-radius: 100%;
    z-index: -1;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: 4rem;
    color: var(--lines);
    border-top: 3px solid var(--lines);
    font-family: var(--font_Secundary);
    text-align: center;
    font-size: 1.8rem;
}

strong {
    margin-left: 0.4rem;
}

.footer {
    background-image: linear-gradient(90deg,#5865f2 0%, #0c0016 50%, #5865f2 100%) !important;
    height: 4rem;
}

.section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    margin-right: 1vw;
}

.textAbout {
    color: var(--lines);
    font-size: 2rem;
    margin-left: 3vw;
    margin-right: 3vw;
    text-align: center;

}

.signature {
    cursor: wait;
}

.widget {
    margin-top: 10vh;
    display: flex;
    width: 90vw;
    height: 90vh;
    transition: all 1.5s;
}

.widgetMobile{
    display: none;
}

/*-------------------------------Responsivity--------------------------------*/

@media only screen and (max-width: 767px) {

    body{
        overflow: visible;
    }

    .logoBorder {
        position: absolute;
        display: flex;
        height: 10vh;
        margin-top: 10vh;
        border-radius: 100%;
        z-index: -1;
    }

    .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;
    }

    .section {
        display: flex;
        flex-direction: column;
    }
    
    .textAbout {
        margin-top: 10vh;
        font-size: 1.4rem;
        text-align: center;
    
    }

    .widget{
        display: none;
    }

    .widgetMobile{
        display: flex;
        width: 90vw;
        height: 90vh;
        align-items: center;
        transition: all 1.5s;
        flex-direction: column;
    }

    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) {

    .section {
        display: flex;
        flex-direction: column;
    }
    
    .textAbout {
        margin-top: 10vh;
        font-size: 1.4rem;
        text-align: center;
    
    }

    .widget{
        display: none;
    }

    .widgetMobile{
        display: flex;
        width: 90vw;
        height: 90vh;
        align-items: center;
        transition: all 1.5s;
        flex-direction: column;
    }

    footer {
        position: fixed;
        bottom: 0;
        width: 100vw;
        text-align: center;
        font-size: 1.6rem;
    }
}

@media only screen and (min-width: 1024px) and (max-width:1280px) {

    .widget {
        margin-top: 10vh;
        display: flex;
        width: 150vw;
        height: 80vh;
        transition: all 1.5s;
    }
    
    .widgetMobile{
        display: none;
    }

}

