#Home {
    height: 100vh;
    width: 100vw;
    justify-content: center;
    background-color: black;
}

#Home img {
    position: relative;
    height: 100vh;
    object-fit: cover;
}

#Home .home-text {
    z-index: 4;
    position: absolute;
    justify-content: center;
    box-shadow: inset 600px 0 120px 0px rgba(0, 0, 0, 0.75);
    width: 100vw;
    height: 100vh;
}

#Home .content{
    margin: 0 40px;
    width: 50%;
}

.home-text h1{
    font-size: 120px;
    margin: 0;
    height: 75%;
    color: #c1121f;
    font-weight: 1000;
}

#Home .home-title{
    z-index: 2;
    width: 50%;
    height: auto;
    margin-bottom: -70px;
}

#Home p {
    font-size: 18px;
}

#Home .button-wrapper{
    flex-direction: row;
    width: 100%;
    gap: 20px;
}

#Home .button {
    border-radius: 8px;
    width: 40%;
    padding: 10px 30px;
    transition: ease-in 0.3s;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    background-color: #c1121f;
    color: white;
    width: fit-content;
}


#Home .button:hover {
    color: black;
    background-color: rgba(255, 255, 255, 1);
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}