
@import url('https://fonts.googleapis.com/css2?family=Lato');

*{
    margin: 0;
    padding: 0;
}

:root{
    --white: #fff;
    --green: #3fe63f;
    --dark1: #34344e;
    --dark2: #3a415a;
    --dark3: #566981;
    --dark4: #89a7b1;
    --dark5: #cbdad5;
    --dark6: #2f2f46;
}

body{
    background-color: var(--dark1);
    height: 100vh;
    font-family: Lato;
}

header{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: .8rem;
    background-color: var(--dark6);
    min-height: 50px;
}

.box-img-header{
    height: 100%;
}

.img-logo{
    max-width: 70px;
    height: 100%;
    border-radius: 20px;
}

nav{
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links{
    text-decoration: none;
    color: var(--white);
}

.nav-links:hover{
    color: var(--green);
    transition: .4s;
    text-decoration:underline;
    transform: scale(1.3);
}

.box-btn-actions{
    display: flex;
    gap: 1rem;
}

button{
    color: var(--white);
    border: 1px solid;
    background-color: transparent;
    padding:.6px ;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
}

.btn-cadastrar:hover{
    border: 1px solid;
    color: var(--green);
    transition: .4s;
    text-decoration:underline;
    transform: scale(1.3);
}

.btn-entrar:hover{
    color: var(--green);
    transition: .4s;
    text-decoration:underline;
    transform: scale(1.3);
}

main{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

section{
    padding: 2rem;
}

.first-section{
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    min-width: 650px;
}

.first-section > div{
    display: flex;
    flex-direction: column;
    gap:1rem;
    min-width: 300px;
}

h1{
    font-size: 4rem;
    color: var(--white);
    letter-spacing: 4px;
}

strong{
    color:#3fe63f
}

.first-section p{
    color: var(--white);
}

.link-action{
    text-decoration: none;
    width: 200px;
    text-align: center;
    color:aqua
}

.box-img-main{
    max-width: 300px ;
    padding: 0;
}

.img-profile{
    border-radius: 50%;
    width: 100%;
}

:is(.second-section , .fourth-section){
    display:flex ;
    flex-direction: column;
    align-items: center;
    justify-content:center;
    gap: 2rem;
    background-color: var(--dark2);
}

.second-section ul{
    color: var(--white);
    list-style: none;
    display: flex;
    justify-content:center;
    align-items: center;
    gap: 2rem;
    

}

.second-section ul li{
    color: var(--dark4);
    cursor: pointer;
}
.second-section ul li:hover{
    font-weight: bold;
    letter-spacing: 2px;
    color: #3fe63f;
    transition: .5s;
    transform: scale(1.1);
    

}

.title{
    color: var(--dark5);
}

.third-section{
    display: flex;
    flex-direction: column;
    gap:2rem;
}

.third-section > div{
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.third-section > div img{
    width: 250px;
    border-radius: 30px;
}

.third-section > div p{
    max-width: 500px;
    color: var(--white);
    text-align: justify;

}

footer{
    align-items: center;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

footer > div{
    justify-content: center;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;

}

.linkedin:hover{
    transform: scale(2.0);
}

.github:hover{
    transform: scale(2.0);
}

.discord:hover{
    transform: scale(2.0);
}

.email:hover{
    transform: scale(2.0);
}


.fourth-section div a{
    text-decoration: none;
    color: var(--white);
    justify-content: space-around;
    align-items:center center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: .8rem;
    
}

.fourth-section div a:hover{
    color: #3fe63f;
    transition: .4s;
    transform: scale(1.2);
}

