.landing{
    background-image: url('/assets/img/landing1.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    display: flex;
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: -1;
    justify-content: center;
    align-items: center;
}

.overlay{
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    min-height: fit-content;
    padding: 2.5rem 0rem;
    color: white;
    font-size: 1.6rem;
    border-radius: 10px;
}

.overlay > * {
    margin: 10px;
}

@media screen and (max-width: 750px){
    .overlay{
        width: 100%;
        height: 100%;
        font-size: 1.4rem;
        padding: 1.4rem;
    }
}