@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

/* Reset do CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-width: 100vh;
    font-family: "Nunito Sans"
}

header {
    background-image: linear-gradient(175deg, #5d139b 0%, #0f009b 100%);
    color: azure;
    padding: 60px;
    text-align: center;
}

main {
    background-color: rgb(44, 44, 44);
    flex: 1;
    padding: 48px;
    padding-bottom: 700px;
    padding-left: 38px;
    padding-right: 38px;
}   

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

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

#titulo-sobre-mim {
    color: black;
    font-size: 42px;
    width: 80%; 
    background-color: white;
    border-bottom: 2px solid #0f009b;
    margin-top: 5px;
    margin-bottom: 5px;
}

.texto-sobre-mim {
    font-size: 34px;
    width: 80%;
    background-color: white;
    color: black;
}

#titulo-hobbies {
    color: black;
    font-size: 42px;
    width: 80%; 
    background-color: white;
    border-bottom: 2px solid #0f009b;
    margin-top: 5px;
    margin-bottom: 5px;
}

.texto-hobbies{
    font-size: 34px;
    width: 80%;
    background-color: white;
    color: black;
}

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

li {
    background-color: #3572f7;
    padding: 12px;
    border-left: 4px solid #5d139b;
    font-size: 18px;
    min-width: 250px;
    color: white;
}

li:hover {
    background-color: rgb(22, 68, 167);
    transform: translateX(5px);
    transition: all 0.3s ease;
}