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



.herr-von-muellerhoff-regular {
    font-family: "Herr Von Muellerhoff", cursive;
    font-weight: 300;
    font-style: normal;
}


.karla-simples {
    font-family: "Karla", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.inria-serif-light {
    font-family: "Inria Serif", serif;
    font-weight: 300;
    font-style: normal;
}

.inria-serif-regular {
    font-family: "Inria Serif", serif;
    font-weight: 400;
    font-style: normal;
}


.kapakana-cursivo {
    font-family: "Kapakana", cursive;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.kotta-one-regular {
    font-family: "Kotta One", serif;
    font-weight: 400;
    font-style: normal;
}


body {
    width: 100%;
    height: 100vh;
}

#header {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 75px;
    justify-content: space-between;
    padding: 1%;
    background-color: #FFC6C6;
}

header>p {
    font-family: "Herr Von Muellerhoff", cursive;
    font-size: 50px;
    text-decoration: none;
    margin-left: 20px;
}

#decoracao1 {
    position: absolute;
    top: 5%;
    right: 84%;
}

#decoracao2 {
    position: absolute;
    top: 5%;
    right: 90%;
}


#btns-header {
    display: flex;
    gap: 10px;
    padding-left: 40%;

}

#btns-header>button {
    border-radius: 25px;
    border: none;
    height: 40px;
    width: 100px;
    color: #644A07;
    background-color: white;
    font-family: "Inria Serif", serif;

}

#tema {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tema-icon {
    transition: opacity 0.3s ease;
}

#apresentando {
    color: #644A07;
    font-family: "Kapakana", cursive;
    font-size: 70px;
}

main {
    background-color: #FFDBDB;
    height: 80vh;
    padding: 7%;
}

#frase1 {
    font-family: "Kotta One", serif;
    font-size: 25px;
}

#frase2 {
    font-family: "Inria Serif", serif;
    font-size: 20px;
}

#Ver {
    background-color: #FFCBCB;
    border-radius: 20px;
    width: 135px;
    border: none;
    height: 40px;
    margin-top: 50px;
    margin-right: 20px;
}

#ctt {
    color: #644A07;
    border-radius: 20px;
    width: 135px;
    border: none;
    height: 40px;
}

#conteudo {
    margin-left: 40px;
}

#perfil {
    position: absolute;
    left: 60%;
    top: 15%;
}

#foto {
    box-shadow: -50px 0 10px 20px #FFC6C6;
    border-radius: 50%;
}

#estrela {

    position: absolute;
    left: 37px;
    top: 35%;
    z-index: 99px;
}

footer {
    background-color: #FFC6C6;
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

#lado{
    display: flex;
    flex-direction: row;
    gap: 20px;
}


.dark-mode {
    background-color: #1a1a1a;
    color: #ffffff;
}

.dark-mode #header {
    background-color: #2d2d2d;
}

.dark-mode main {
    background-color: #1a1a1a;
}

.dark-mode #apresentando {
    color: #ffffff;
}

.dark-mode #btns-header > button {
    background-color: #3d3d3d;
    color: #ffffff;
}

.dark-mode #Ver {
    background-color: #3d3d3d;
    color: #ffffff;
}

.dark-mode #ctt {
    background-color: #3d3d3d;
    color: #ffffff;
}

.dark-mode #foto {
    box-shadow: -50px 0 10px 20px #666666;
}

.dark-mode footer {
    background-color: #2d2d2d;
}



#btns-header > button {
    transition: all 0.3s ease;
}

#btns-header > button:hover {
    background-color: #ffd8d8;
    transform: translateY(-2px);
}

#Ver {
    transition: all 0.3s ease;
}

#Ver:hover {
    background-color: #ffd8d8;
    transform: translateY(-2px);
}

#ctt {
    transition: all 0.3s ease;
}

#ctt:hover {
    background-color: #FFC6C6;
    transform: translateY(-2px);
}

#tema:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}

.dark-mode #btns-header > button:hover {
    background-color: #555555;
}

.dark-mode #Ver:hover {
    background-color: #555555;
}

.dark-mode #ctt:hover {
    background-color: #555555;
}

.dark-mode #tema:hover {
    background-color: #555555;
}

.dark-mode #estrela {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    #header {
        flex-direction: column;
        height: auto;
        padding: 10px;
    }
    
    header>p {
        font-size: 35px;
        margin: 0;
    }
    
    #decoracao1, #decoracao2 {
        display: none;
    }
    
    #btns-header {
        padding: 0;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
    }
    
    #btns-header>button {
        width: 80px;
        height: 35px;
        font-size: 12px;
    }
    
    #tema {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    
    main {
        flex-direction: column;
        padding: 20px 10px;
        height: auto;
        min-height: 70vh;
    }
    
    #conteudo {
        margin-left: 0;
        order: 2;
        text-align: center;
    }
    
    #perfil {
        position: relative;
        left: auto;
        top: auto;
        order: 1;
        text-align: center;
        margin-bottom: 20px;
    }
    
    #apresentando {
        font-size: 45px;
    }
    
    #frase1 {
        font-size: 20px;
    }
    
    #frase2 {
        font-size: 16px;
    }
    
    #foto {
        width: 200px;
        height: 200px;
        box-shadow: 0 10px 20px #FFC6C6;
    }
    
    #estrela {
        display: none;
    }
    
    #Ver, #ctt {
        width: 150px;
        margin: 5px;
    }
    
    footer {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 15px;
    }
    
    #lado {
        justify-content: center;
        text-align: center;
    }
}