body{
    width: 100%;
    height: calc(100vh - 10%);
    margin: 0;
    font-family: 'Noto Sans SC', sans-serif;
    background-color: black;
    background: url(CommuniTraders-Gradient.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

nav{
    width: 100%;
    height: 90px;
    background: #181f29;
}

nav .content-nav{
    width: 90%;
    height: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 25% auto;
    grid-column-gap: 20px;
    align-items: center;
}

nav img{
    width: 100%;
    max-width: 262px;
}

nav .links{
    display: flex;
    gap: 40px;
}

nav .links a{
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 3px;
}

.logo-white{
    width: 100%;
    max-width: 300px;
    margin: auto;
    margin-top: 10%;
}

.logo-white img{
    width: 100%;
    max-width: 300px;
    margin: auto;
    margin-top: 10%;
}
section{
    width: 90%;
    margin: auto;
    text-align: center;
    margin-bottom: 50px;
}

section h3{
    color: #43586b;
    font-size: 33px;
    font-weight: 400;
    margin: 0;
    margin-top: 80px;
}

section h1{
    color: #43586b;
    font-size: 75px;
    font-weight: 800;
    margin-top: 0px;
    /* text-shadow: 0px 11px 11px #00000061; */
}

section .btns{
    width: 100%;
    margin: auto;
    display: flex;
    gap: 20px;
    justify-content: center;
}

section .btns .btn-red{
    display: flex;
    align-items: center;
    width: auto;
    height: 50px;
    border: none;
    outline: 0;
    text-align: center;
    background: red;
    color: #fff;
    font-size: 1rem;
    transition: .3s;
    justify-content: center;
    text-decoration: none;
    padding: 0 30px;
}

section .btns .btn-white{
    display: flex;
    align-items: center;
    width: auto;
    height: 50px;
    border: none;
    outline: 0;
    text-align: center;
    background: transparent;
    border: 1px solid white;
    color: #fff;
    font-size: 1rem;
    transition: .3s;
    justify-content: center;
    text-decoration: none;
    padding: 0 30px;
}

section .btns a:hover{
    background: #181f29;
    border: none;
}

@media (max-width: 600px){

    nav{
        width: 100%;
        height: auto;
        background: #181f29;
    }

    nav .content-nav{
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: 1fr 1fr;
        grid-column-gap: 20px;
        align-items: center;
        justify-items: center;
        padding: 20px 0;
    }

    section h3 {
        font-size: 25px;
    }

    section h1 {
        color: white;
        font-size: 45px;
        font-weight: 800;
        margin-top: 0px;
        text-shadow: 0px 11px 11px #00000061;
    }

    section .btns {
        width: 100%;
        margin: auto;
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-direction: column;
    }
}