.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1.4em;
    border-radius: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 20vw;
}

#input {
    /* border-width: 1.5em; */
    border-radius: 10em;
    width: 10em;
    font-size: large;
    font-weight: bold;
    padding: 0.38em;
}

#search {
    width: 4em;
    height: 2em;
    border-radius: 3em;
    font-size: large;
    font-weight: bold;
}

body {
    font-size: small;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    background-image: url('https://source.unsplash.com/1600x900/?landscape');
    background-size: cover;
    background-color: rgb(28, 24, 24);
    height: 100vh;
    width: 100vw;
}

.block {
    margin-top: -2.1em;
    display: inline-block;
    display: flex;
    align-items: center;
    margin-bottom: -1.71em;
}

#image {
    width: 100%;
    height: auto;
}

#answers {
    display: none;
    font-size:x-small;
}

@media screen and (max-width:768px) {
    .container {
        width: 72vw;
    }
    #input {
        width: 42vw;
        font-size: medium;
    }
    #search {
        width: 21vw;
        height: 8vw;
        font-size: small;
    }
    body {
        font-size: smaller;
    }
    #answers {
        font-size: smaller;
    }
}
