@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Playfair Display", sans-serif;
}

body{
    background-image: url(.././assets/papel-de-parede-ceu-estrelado.jpg.webp);
}

.modal{
    width: 100%;
    height: 700px;
    position: absolute;
    background-color: rgba(0,0,0,0.5);
}

header{
    position: fixed;
    top: 0;
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:  0 240px;
    background: linear-gradient(#00bfff96,#00ffff98, #ffb6c19d, #ff14918f, transparent);
    z-index: 1;
}

.logo-img{
    width: 70px;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}


.logo-img:hover{
    transform: scale(1.25);
    transition: 0.5s;
}

nav{
    width: 80%;
}

ul{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


li{
    font-size: 2.5rem;
    font-weight: bold;
    font-family: "Caveat", cursive;
    color: #000000;
}

li:hover{
    color: #d425a0;
    cursor: pointer;
}


.welcome-container{
    width: 100%;
    height: 700px;
    padding-top: 80px;
    padding-left: 100px;
    background-image: url(./assets/papel-de-parede-ceu-estrelado.jpg.webp);
    z-index: 1;
}


.banner-contain{
    width: 100%;
    height: 100%;
    display: flex;
}

.home-container{
    width: 100%;
    height: 84%;
    display: flex;
    align-items: center;
    z-index: 1;
}

.home-container h1{
    font-size: 6rem;
    font-family: "Caveat", cursive;
    padding-top: 70px;
    color: #DAA520;
    text-align: center;
}

.home-container h1:hover{
    color: #d425a0;
    cursor: pointer;
}

.home-container h3{
    font-size: 2rem;
    font-family: "poppins", sans-serif;
    color: aliceblue;
    padding-top: 90px;
    padding-left: 30px;
    padding-right: 30px;
}


.avatar-img{
    width: 400px;
    margin-top: 150px;
    padding-right: 50px;
}

.about-me-container{
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.about-me{
    width: 80%;
    height: 50vh;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(105, 105, 105, 0.63);
}

.about-me p{
    font-family: "Caveat", cursive;
    color: aliceblue;
}

.habilidades-container{
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.habilidades{
    width: 95%;
    font-size: 2rem;
    font-family: "poppins", sans-serif;
    font-weight: bold;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(105, 105, 105, 0.507);
}

.projetos-container{
    width: 100%;
    height: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.projetos-text{
    width: 90%;
    font-size: 4rem;
    font-family: "Caveat", cursive;
    color: gold;
    background-color: rgba(105, 105, 105, 0.63);
    text-align: center;
}


.projetos{
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.img-contain{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    padding-bottom: 50px;
}

.card{
    width: 90%;
    height: 400px;
    background-size: cover;
    background-position: 50% 50%;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 0px 60px;
}

.extras{
    width: 100%;
    height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(105, 105, 105, 0.432);
}

.hobbies{
    font-size: 6rem;
    font-family: "Caveat", cursive;
    font-weight: bolder;
    color: aliceblue;
}

.hobbies:hover{
    color: #DAA520;
    cursor: pointer;
}

.atividade-contain{
    width: 100%;
    height: 300vh;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 20px;
    padding-top: 50px;
    padding-left: 50px;
}

.hobby{
    width: 90%;
    height: 300px;
    background-size: cover;
    background-position: 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}


.social-midias{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    column-gap: 20px;
}

.social-midias i{
    font-size: 5rem;
    color: #fff;
    cursor: pointer;
}

#linkedin-icon:hover{
    color: #007bff;
}

#instagram-icon:hover{
    color: #DAA520;
}

#github-icon:hover{
    color: #e416b7;
}

footer{
    height: 300px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-image: url(./papel-de-parede-ceu-estrelado.jpg.webp);
}

span{
    color: #f5066a;
    font-family: "Caveat", cursive;
    font-size: 2rem;
    font-weight: bolder;
}

.email{
    color: #f5066a;
    font-family: "Caveat", cursive;
    font-size: 4rem;
    font-weight: bolder;
    cursor: pointer;
}

.email:hover{
    color: rgb(0, 255, 255);
}

#logo{
    height: 100px;
    width: 100px;
}

.footer-navigation{
    display: none;
}

.footer-list{
    display: flex;
    flex-direction: column;
    align-items: center;
}

