body, html {
    height: 100vh;
    padding: 0;
    margin: 0;
    font-family: "Geom", sans-serif;
    background-color: #1e2030;
    color: #cad3f5;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}
.main .child {
    background-color: #494d64;
    display: flex;
    gap: 5px;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 450px;
    padding: 20px;
    border-radius: 15px;
}
.main input {
    background-color: #cad3f5;
    border: none;
    padding: 7px;
    border-radius: 10px;
}
.main button {
    border: none;
    background-color: #8aadf4;
    color: #24273a;
    padding: 10px;
    border-radius: 10px;
    transition: all 175ms ease-in-out;
}
.main button:active {
    background-color: #7dc4e4;
}
.main .results {
    gap: 0;
}
.main .results a {
    margin: 2px;
}
h4 {
    margin: 5px 0;
    text-align: center;
}

.main input {
    width: 250px;
}