body{
    background-color: var(--background);
    font-family: 'Raleway', Arial, sans-serif;
}
/* Hero Section */
.hero-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.hero-section .icon{
    height: 130px;
    margin: 1rem;
}
.hero-section h1{
    color: var(--primary);
    font-size: 48px;
    font-weight: 500;
}
/* Portefolio Section */
.portefolio{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 3rem;
}
.portefolio header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.portefolio header h2{
    font-size: 32px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}
.portefolio header p{
    text-align: center;
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 2rem;
}
.portefolio .portefolio-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.portefolio .portefolio-content .website-base{
    background-color: var(--surface);
    width: 250px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
footer{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    background-color: var(--surface);
    padding: 2rem;
}
/* Furnitora */
.portefolio .portefolio-content .furnitora div{
    background-color: #2c241f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.portefolio .portefolio-content .furnitora{
    text-decoration: none;
}
.portefolio .portefolio-content .furnitora h3{
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 600;
}
@media (min-width: 768px){

    .hero-section{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }
    .hero-section .icon{
        height: 200px;
    }

}