@import url('https://fonts.googleapis.com/css2?family=Libertinus+Serif:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');
* {
    margin: 0;
    padding:0 ;
    box-sizing: border-box;
}
/*config geral*/
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Libetinus-serif";
}
/*sobre mim*/
#Cabeçalho{
    margin-top: 20px;
}
header {
    background-color: rgba(235, 235, 235, 0.822);
    width: 100%;
    height: 100px;
    text-align: center;
    color: rgb(16, 17, 17);
}
/*sobremim*/
about-section {
    display: block;
    background-color: rgba(139, 139, 139, 0.712);
    width: 80%;
    margin: 0 auto;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 48px;
}

main {
    background-color: rgba(136, 136, 136, 0.623);
    flex: 1;
    width: 100%;
    padding: 48px 38px;
}
.sobremim {
    font-size: 30px;
    color: rgb(0, 0, 0);
    width: 80%;
    text-align: center;
    margin: 0 auto;
}
#titulo{
    font-size: 30px;
    color: rgb(5, 5, 5);
    width: 80%;
    text-align: center;
    margin: 0 auto;
}
/*segunda caixa*/
.hobbit {
    font-size: 30px;
    color: rgb(228, 241, 252);
    width: 80%;
    text-align: center;
    margin: 0 auto;
}
#hobby{
    font-size: 30px;
    color: rgb(7, 7, 7);
    width: 80%;
    text-align: center;
    margin: 0 auto;
}
about-section2 {
    display: block;
    background-color: rgba(136, 136, 136, 0.63);
    width: 80%;
    margin: 0 auto;
    padding: 30px;
    border-radius: 10px;
    margin-top: 48px;
}
ul{
    list-style: none;
    padding: 10px 10px;
    display: flex;
    gap: 48px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.712);
    border-radius: 10px;
}
li{
    border-left: 4x solid rgb(248, 248, 248);
    min-width: 200px;
    padding: 12px;
    font-size: 16px;
    color: rgba(3, 3, 3, 0.808);
    font-size: medium;

}
li:hover{
    background-color: rgba(0, 0, 0, 0.808);
    transform: translateX(5px);
    transition: all 0.3s ease;
}





