* {
    font-family: 'Lucida Console', 'Courier New', monospace;
    box-sizing: border-box;
}

body{
    margin: 0;
}

.bg-container{
    height: 100vh;
    background-image: url(img//bg.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container{
    flex-direction: column;
    display: flex;
    border: 4px solid rgb(195, 199, 219);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    padding: 2rem 1rem;
}

.container h1, h4{
    color: white;
}

input, select {
    color: black;
    width: 300px;
    height: 50px;
    padding: 15px;
    margin: 5px auto;
    font-size: 16px;
    border: 2px solid rgb(106, 113, 151);
    border-radius: 10px;
}

output {
    background-color: white;
    width: 300px;
    height: 50px;
    padding: 13px 97px;
    font-size: 16px;
    border: 2px solid rgb(106, 113, 151);
    border-radius: 10px;
}

@media only screen and (max-width:800px){
    .container{
        max-width: 80%;
    }

    input, select {
        width: 200px;
    }

    output {
        width: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
        padding: 13px 20px;
    }
}