body {
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    
}

.home {
    /* background-image: url("/images/front-page.JPEG"); */
    background: linear-gradient(to bottom, rgb(48, 43, 43), maroon);
    /* background-repeat: no-repeat;
    background-size: contain;
    background-position: center; */
    margin-top: 5px;
    /* height: 60vh;
    width: 100%; */
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    border-bottom: 15px solid maroon;
    border-top: 15px solid maroon;
    
}

.home img {
    object-fit: cover;
    width: auto;
    max-width: 100%;
    height: auto;

}

.home-content {
    padding-top: 50px;
}

.home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: rgba(0, 0, 0, 0.4); Adjust opacity to control darkness */
    z-index: 1;
}

.home-content h1 {
    font-size: 70px;
    color: white;
    position: relative;
    z-index: 2;
}

.home-content p {
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.learn-button {
    position: relative;
    z-index: 2;
}


 .contact-button {
    background-color: rgb(204, 24, 24);
    color: white;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 15px;
    padding-top: 15px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    position: absolute;
    bottom: 0;
}

.contact-button:hover {
    background-color: rgba(78, 3, 3, 0.8);
    color: white;
}

.separator {
    background-color: red;
}