body {
    height: 100vh;
    align-items: center;
    background-color: black;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.container {
    margin: 0 auto;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#random {
    width: 300px;
    background-color: white;
    height: 300px;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 50%;
    display: grid;
    align-items: center;
    justify-content: center;
    place-items: center;
    transition: .5s;
    box-shadow: 0 0 0px white;
    font-size: 3rem;
}

#input, #button {
    margin: 10px;
    font-family: sans-serif;
}

#input {
    height: 32px;
    width: 300px;
}

#button {
    
    height: 32px;
}