body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding-top: 50px;
    /* background-color: white; */
    background-color: #27D3F5;
    color: black;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.buttons button {
    padding: 10px 15px;
    margin: 10px;
    cursor: pointer;
    text-align: center;
}

/* Dark mode */
.dark {
    background-color: #121212;
    color: white;
    cursor: pointer;
}

#container{
    border: 2px solid;
    height: 500px;
    width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

#themeBtn{
    width: 90px;
}