/* Reset do CSS */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');


* {
    margin: 0;
    padding: 0;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, p {
    font-family:"Bebas Neue";
}

header {
    background-color: rgb(255, 255, 255);
    padding: 55px;
    text-align: center;
}

main {
    background-color: cornflowerblue;
    flex: 1;
    padding: 48px 38px;

}

about-section {
    display: block;
    background-color: white;
    width: 80%;
    margin: 0 auto;
    padding: 40px;;
    border-radius: 10px;
    margin-bottom: 40px;
}




#titulo-about-me {
    font-size: 25px;
    border-bottom: solid cornflowerblue;
    margin-bottom: 7px;
}

.text-about-me {
    font-size: 20px;


}

h3, h2 {
    font-family:"Bebas Neue";
    font-size: 25px;
}


hobbies {
    display: block;
    background-color: white;
    width: 80%;
    margin: 0 auto;
    padding: 40px;;
    border-radius: 12px;
    margin-bottom: 40px;
}

li {
    background-color: aliceblue;
    border-radius: 10px;
    font-family:"Bebas Neue";
    padding: 12px;
    border-left: 6px solid cornflowerblue;
    font-size: 18px;
    min-width: 250px;
}

ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 12px;
}

li:hover {
    background-color: cornflowerblue;
    transform: translate(5px);
    transition: all 0.6s ease;
    
}
contact {
    display: block;
    background-color: white;
    width: 80%;
    margin: 0 auto;
    padding: 40px;;
    border-radius: 10px;
    margin-bottom: 30px;
}
contact h2 {
    margin-bottom: 8px;
    font-size: 25px;
    text-align: center;
}
contact p {
    text-align: center;
    font-size: 20px;

}
contact a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 100px;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border: 2px solid cornflowerblue;
    border-radius: 30px;
    border-left: 5px solid cornflowerblue;
    border-right: 5px solid cornflowerblue;
    background-color: aliceblue;
}
contact a:hover {
    transform: translate(5px);
    transition: all 0.6s ease;
    background-color: cornflowerblue;
}
footer {
    background-color: white;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 55px;
}
footer p {
    font-size: 15px;
}
