*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
}

html{
    font-size: 60%;
    overflow-x: hidden;
}

body{
    background-color: #000000;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 4rem 12% 4rem;
    background: rgb(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

#home a{
    color: rgb(255, 255, 255);
}

#home a:hover{
    color: rgb(255, 0, 106);
}

#projetos a{
    color: rgb(255, 255, 255);
}

#projetos a:hover{
    color: rgb(255, 0, 98);
}

#hobbies a{
    color: rgb(255, 0, 106);    
    text-decoration: underline;
}

#hobbies a:hover{
    color: rgb(255, 0, 106);    
    text-decoration: underline;
}

#contatos a{
    color: rgb(255, 255, 255);
}

#contatos a:hover{
    color: rgb(255, 0, 98);
}

.logo{
    font-size: 3rem;
    font-family: 'sedgwick ave', sans-serif;
    color: rgb(255, 255, 255);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.logo:hover{
    transform: scale(1.1);
    color: rgb(255, 0, 106);
}

.logo span{
    text-shadow: 0 0 25px rgb(255, 0, 106);
}

.logo b{
    color: rgb(255, 0, 106);
}

.navbar{
    font-size: 1.8rem;
    color: white;
    display: flex;
}

.navbar p{
    margin-left: 4rem;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.navbar p:hover{
    color: rgb(255, 0, 106);
    transition: 0.4s;
    transform: scale(1.1);
    cursor: pointer;
}

/*navbar e header final*/

#billie a{
    text-decoration: underline;
    color: rgb(255, 0, 106);
}

#stardew a{
    text-decoration: underline;
    color: rgb(255, 72, 0);
}

.desenho-img{
    width: 32rem;
    height: 40rem;
    box-shadow: 0 0 10px rgb(8, 255, 234);
    cursor: pointer;
    border-radius: 5%;
}

.desenho-img:hover{
    box-shadow: 0 0 15px rgb(8, 255, 234);
}

.stardew-img{
    width: 36rem;
    height: 40rem;
    cursor: pointer;
    box-shadow: 0 0 15px rgb(255, 81, 0);
    border-radius: 5%;
}

.stardew-img:hover{
    box-shadow: 0 0 25px rgb(255, 81, 0);
}

.billie-video{
    width: 40rem;
    height: 40rem;
    cursor: pointer;
    box-shadow: 0 0 15px white;
    border-radius: 5%;
}

.billie-video:hover{
    box-shadow: 0 0 25px white;
    cursor: pointer;
}

.titulo-hobbie{
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 3rem;
    margin-bottom: 1%;
    margin-left: 7%;
}

.hobbies{
    font-family: 'Rubik', sans-serif;
    color: white;
    font-size: 2rem;
    display: flex;
    justify-content: space-between;
}

.hobbies div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hobbies p{
    margin-bottom: 2.5%;
}

.hobbies a{
    margin-left: 0.8rem;
}

.sec{
    margin-top: 7%;
}

.desenho-div{
    margin-left: 7%;
}

.stardew-div{
    margin-right: 7%;
}


