html, body {
    margin: 0;
    padding: 0;
    font-family: "Rubik", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-image: url(assets/bg.png);
    background-size: cover;
}

#box {
    background-color: #ffe0a2;
    padding: 1.5em 3em;
    border-radius: 1em;
    border: solid #432d00 0.25em;
    max-width: 25em;
    margin: 0 0.5em 0 0.5em;
}

button {
    background-color: blue;
    padding: 1em 2em;
    color: #ffe0a2;
    font-family: "Press Start 2P", "Rubik", sans-serif;
    border: solid rgb(0, 0, 79) 0.3em;
    border-radius: 1em;
    width: 100%;
    box-shadow: 0 0.5em 0 rgba(0, 0, 0, 1); /* Raised effect */
    transition: all 0.2s ease; /* Smooth transition */
    margin-bottom: 1em;
}

button:hover {
    background-color: rgb(78, 78, 247);
    color: #ffe0a2;
    box-shadow: 0 0.7em 0 rgba(0, 0, 0, 1); /* Slightly more raised on hover */
}

button:active {
    background-color: blue;
    color: #ffe0a2;
    box-shadow: 0 0.2em 0 rgba(0, 0, 0, 1); /* Reduced shadow for pressed effect */
    transform: translateY(0.2em); /* Simulates pressing down */
}

#display {
    width: 100%;
    min-height: 10em;
    background-color: #fbeccb;
    border-radius: 1em;
    margin-bottom: 1em;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em 1em;
    box-sizing: border-box;
    text-align: center;
    border: solid rgb(196, 165, 103) 0.25em;
}

#logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#logo {
    width: 5em;
    height: 5em;
    border-radius: 50%;
    border: solid #432d00 0.25em;
}

h1 {
    margin-bottom: 0.3em;
}

header p {
    margin: 0.3em 0 2em 0;
}

h1, p {
    text-align: center;
}

footer p {
    color: #432d00;
    font-weight: 500;
}