* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    height: 250px;
    width: 400px;
    background-color: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 20px;
}

.container h1 {
    font-size: 40px;
    text-transform: capitalize;
}

.container button {
    padding: 14px 25px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    background-color: #333;
    color: #fff;
    cursor: pointer;
}

.container button:active {
    background-color: #222;
}

@media (max-width: 500px) {
    .container {
        box-shadow: none;
        border-radius: 0;
    }

    .container button {
        cursor: initial;
    }
}