.horizontal {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.vertical {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.image {
    border: 1px solid #000;
    height: 30em;
    width: 30em;
    margin: 2px;
}
.separator{
    display: none;
}

@media screen and (max-width: 1500px) {
    .image {
        height: 25em;
        width: 25em;
    }
}

@media screen and (max-width: 1250px) {
    .image {
        height: 20em;
        width: 20em;
    }
}

@media screen and (max-width: 1000px) {
    .horizontal {
        flex-direction: column;
        align-items: center;
    }
    .separator{
        display: block;
        width: 80%;
        height: 2px;
        background-color: black;
        margin: 3em;
    }
    .image {
        height: 35em;
        width: 35em;
    }   
}

@media screen and (max-width: 650px) {
    .image {
        height: 30em;
        width: 30em;
    }
}

@media screen and (max-width: 500px) {
    .image {
        height: 25em;
        width: 25em;
    }
}

@media screen and (max-width: 450px) {
    .image {
        height: 20em;
        width: 20em;
    }
}

@font-face {
    font-family: 'ComicSansMS';
    src: url('Comic Sans MS.ttf') format('truetype');
}

h1 {
    font-family: 'ComicSansMS';
    text-align: center;
}

textarea {
    height: 3em;
    width: 20em;
}

input {
    height: 3em;
    padding: 3px;
}

button {
    height: 3em;
    padding: 0 2em;
    margin: 3px;
}