/* neue-haas-grotesk-display and neue-haas-grotesk-text*/
body {
    overflow: hidden;
    background-color: #FBFAF4; 
}

.widthContainer {
    max-width: 2560px;
    margin: 0 auto;
    padding: 0 2rem;
}

.homeRow{
    display: flex;
    align-items: center;          
    justify-items: center;
    height: 80vh;   
    padding-left: 3rem;
    animation: fadeIn 1s ease forwards;   

}

.homeText{
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 1.3rem;
    color: #5B5B5B;
    
    padding-right: 10rem;
}

.imgHome{
    height: auto;
    width: 40%;
    padding-right: 3rem;

    object-fit: cover;
}

footer {
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 0.8rem;

    position: fixed;
    right: 0;
    bottom: 0;
    padding-bottom: 2.1rem;
    padding-right: 3rem;
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

