body{
    background-color: black;
    font-family: DINAlternate-Bold;
    font-size: 20px;
    color:ghostwhite;
    margin-left: 50px;
}
header{
    position: fixed;
    display: flex;
    top: 0;
    width: calc(100vw - 130px);
    justify-content: space-between;
}
.image-container{
    background-color: black;
    display:flex;
    justify-content:flex-start;
    margin-top: 100px;
}
.image-container .image + .image {
    margin-left: 30px;
}

.image {
    position: relative;
    width: 470px;
    min-width:470px;
    max-height: 664.53px;
}

.image img {
    width: 100%;
    border-radius: 1%;
}

.image .box {
    display: none;
    background-color:rgb(223, 223, 223); opacity: 90%; 
    position: absolute;
    border-radius: 1%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.box p{
    color: black;
    margin-left: 20px;
    font-size: 15px;
}

.image:hover .box{
    display: block;
}
@font-face {
    font-family: DINAlternate-Bold;
    src: url('typefaces/DINAlternate-Bold.woff');
}
@media (max-width: 700px) {
    body {
        background-color: black;
    }
    .image-container {
        background-color: black;
        flex-direction:column;
        margin-top: 100px;

        } 
    .image-container .image + .image {
            margin-left: 0px;
            margin-top: 20px;
        }
    }