#home{
    width: 100%;
    background-color: #EEE;
    padding-top: 16px;
    }
#home > div{
    margin: 0 auto;
    padding: 16px;
    width: 1200px;
    max-width: 100vw;
    background-color: #FFF;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
    }
#home > div > div{
    background-color: #F6F6F6;
    margin-bottom: 16px;
    }
#home-intro-text{
    background-color: #7A0;
    color: #FFF;
    padding: 32px;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 8px;
}
#home-intro-text > div > h1{
    font-family: var(--font-default);
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 120%;
    }
#home-intro-text > div >  p{
    font-family: var(--font-default);
    font-size: 0.9rem;
    font-weight: normal;
    max-width: 80%;
    }
#home-intro-text > div:nth-child(2){
    display: flex;
    align-items: center;
    justify-content: center;
    }
#home-intro-text > div:nth-child(2) > a{
    background-color: #FFF;
    color: yellowgreen;
    text-decoration: none;
    padding: 16px 32px;
    font-family: var(--font-default);
    font-weight: bold;
    font-size: 1rem;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    transition: all 0.4s ease-in-out;
    }
#home-intro-text > div:nth-child(2) > a:hover{
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
    }
#home-intro-tecniques{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 16px;
    }
#home-intro-tecniques > div{
    background-color: yellowgreen;
    padding: 16px;
    color: #FFF;
    }
#home-intro-tecniques > div > label{
    display: block;
    font-family: var(--font-default);
    line-height: 100%;
    }
#home-intro-tecniques > div > strong{
    display: block;
    font-family: var(--font-default);
    font-size: 3rem;
    line-height: 100%;
    }
#home-intro-theme{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    font-family: var(--font-default);
    font-size: 0.8rem;
    background-color: #DDD;
    }
#home-intro-theme > a{
    background-color: #FFF;
    padding: 16px;
    width: 200px;
    text-decoration: none;
    color: #333;
    transition: all 0.4s ease-in-out;
    }
#home-intro-theme > a:hover{
    transform: translateY(-8px);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    }
#home-intro-theme > a > div:nth-child(1){
    aspect-ratio: 1 / 1;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 8px;
    }
#home-intro-theme > a > div:nth-child(1) > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#home-intro-theme > a > div:nth-child(2){
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#home-intro-theme > a > div:nth-child(2) > *{
    text-decoration: none;
    }
#home-intro-theme > a > div > strong{
    background-color: #EEE;
    padding: 4px 8px;
    }

@media (max-width: 1600px) {}
@media (max-width: 1200px) {}
@media (max-width: 1024px) {}
@media (max-width: 840px) {}
@media (max-width: 720px) {}
@media (max-width: 600px) {}
@media (max-width: 480px) {
    #home-intro-text{
        grid-template-columns: 1fr;
        text-align: center;
        }
    #home-intro-text > div > p{
        max-width: 100%;
        margin-bottom: 16px;
        }
    #home-intro-theme{
        gap: 8px;
        font-size: 0.765rem;
        }
    #home-intro-theme > a{
        width: 170px;
        padding: 8px;
        }
}
@media (max-width: 320px) {}