body
{
    margin: 0;
    padding: 0;
    font-family: 'Oswald', sans-serif;
}

.image {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.image img {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
}
.image .cover {
    position: absolute;
    z-index: 999;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgb(65 65 65 / 70%) 0%, rgb(65 65 65 / 0%) 150%);
}
.part{
    height: 20vh;
    width: 20vw;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.content{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    width: 40%;
}
a{
    text-decoration: none;
    color: white;
}
.divider{
    border: 2px solid white;
    height: 50%;
}

.image-slide {
   position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 700px) {
    h1{
        font-size: 2em;
    }
    .content {
        width: 50%;
    }

}
@media screen and (max-width: 500px) {
    .cover{
        display: flex;
        justify-content: end;
        flex-direction: column;
    }
    .content{
        flex-direction: column-reverse;
        justify-content: start;
        width: 100%;
        height: 25%;
    }
    .divider
    {
        height: initial;
        width: 80%;
    }
}