html,
body {
    height: 100%;
    width: 100%;
}

body {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.5) 100%),
    url('./img/wvrc_background_3.jpg') center center no-repeat;
    background-size: cover;
    overflow: hidden;    
    display: flex;
    justify-content: center;
    padding-bottom: 2vh;
    flex-direction: row;

}

#C {
    
    display: flex;
    align-items: center;
    position: absolute;
}

#C > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-grow: 1;
    font-size: 30px;
    line-height: 30px;
    text-shadow: white 0 0 5px;
    font-weight: 600;
    /* border: 1px solid white; */
    padding-bottom: 25px;
    transform: uppercase;
}


#C > div > a > img {
    width: 300px;
    aspect-ratio: 16/3 ;
    text-shadow: white 0 0 10px;
    border: 1px solid white;
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .5);
}

img {
    width: 45%;
    aspect-ratio: 1;   
}

#oval {
    border: 1px solid white;
    width: 900px;
    height: 200px;
    background-color: rgba(255, 255, 255, .6);
    border-radius: 25px;
}

#mC {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* border: 1px solid red; */
    position: relative;
    /* height: 100%; */
}

@media (max-width: 800px) {
    body {
        flex-direction: column;
        padding: 0 5%;
    }

    #C {
        /* position: relative; */
        width: 100%;
        /* height: 100%; */
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        /* border: 1px solid red; */
    }

    #C > div {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    #C > div > a > img {
        width: 90%;
        aspect-ratio: 16/3 ;
        text-shadow: white 0 0 10px;
        border: 1px solid white;
        padding: 10px;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, .5);
    }

    img {
        width: 100%;
        height: 100%;
                
    }

    #oval {
        border: 1px solid white;
        width: 100%;
        height: 200px;
        background-color: rgba(255, 255, 255, .6);
        border-radius: 15px;
    }

    #mC {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
        height: 50vh;
        position: relative;
        /* border: 1px solid white; */
    }
}