@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: aliceblue;
}

.container {
    width: 30rem;
    margin: 6.25rem auto;
    padding: 1.25rem;
    color: aliceblue;
    background-color: rgb(25, 43, 59);
    box-shadow: 0 0 0.5rem gray;
    border: 0.063rem solid gray;
    border-radius: 0.5rem;
}

h3 {
    margin: 0;
    margin-bottom: 1rem;
    text-align: center;
}

h4 {
    margin: 0;
    margin-top: 0.625rem;
    text-align: center;
}

.form-container {
    display: flex;
    flex-direction: column;
}

.input-container {
    display: flex;
    margin: 0.313rem 0;
    align-items: center;
}

.input-container>label {
    flex-basis: 5rem;
    align-self: flex-end;
}

.input-container>input[type="text"] {
    flex: 1;
    padding: 0.5rem 0.313rem;
    background-color: transparent;
    color: aliceblue;
    border: none;
    border-bottom: 0.1rem solid gray;
    transition: all ease-in 300ms;
}

.input-container>input[type="text"]:focus {
    outline: none;
    border-bottom-color: rgb(0, 149, 255);
}

.form-container>button[type="submit"] {
    color: white;
    border: none;
    cursor: pointer;
    padding: 0.6rem 0.375rem;
    border-radius: 0.313rem;
    background-color: rgb(0, 149, 255);
    margin-top: 1.3rem;
    transition: all ease 300ms;
    font-weight: bold;
}

.form-container>button[type="submit"]:hover {
    color: rgb(0, 149, 255);
    background-color: white;
}

#show-results {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
}

#show-results>img {
    height: 18.75rem;
}

@media (max-width: 576px) {
    .container {
        width: 20rem;
    }
}