* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    color: white;
}

select, input, button{
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    margin: 10px 5px;
    text-align: center;
    border-radius: 12px;
    width: 100%;
}

h1 {
    color: #2C2C2C;
}

button {
    background-color:#2C2C2C;
    color: rgb(0, 0, 0);
}

body {
    background-color:#4A4A4A;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    padding: 50px 40px;
    border-radius: 12px;
    background-color:#1A1A1A;
}

p {
    padding-top: 20px;
    color: #2C2C2C;
    font-weight: bold;
}

body, .container, p, h1, button {
    transition: background-color 0.8s ease, color 0.8s ease-out;
}

/* Mobile Phone Designs */
@media (max-width: 600px) {
    body, button {
        background-color: #FDFDFD;
    }
    .container {
        background-color: black;
    }
    h1, p {
        color: #FEFEFE;
    }
}

