* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: rgb(161, 151, 3);
    padding: 40px;
    color: azure;
    border-radius: 20px;
    border: 2px solid rgba(117, 109, 0, 0.788);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    width: 390px;
    height: 280px;
    gap: 4px;
    box-shadow: 1px 0px 15px black;
}

h1 {
    font-weight: 900;
}

p {
    font-size: 23px;
}

button {
    font-size: 20px;
    width: 100%;
    background-color: rgb(140, 131, 1);
    border: none;
    color: azure;
    border-radius: 20px;
    padding: 9px;
    transition: background-color 0.3s ease;
}

button:hover {
    border: 2px solid rgb(88, 82, 1);
    background-color: rgb(153, 155, 3);
}