* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    font-family: Arial, sans-serif;
    background: #1e1e2f;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

h1 {
    margin-bottom: 10px;
}

p {
    margin-bottom: 25px;
    color: #cccccc;
}

.area {
    position: relative;
    width: 600px;
    height: 350px;

    border: 2px solid white;
    border-radius: 15px;
}

#botao {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    padding: 15px 30px;
    border: none;
    border-radius: 10px;

    background: #ff4757;
    color: white;

    font-size: 18px;
    font-weight: bold;

    cursor: pointer;

    transition: left 0.15s ease, top 0.15s ease;
}

#botao:hover {
    background: #ff6b81;
}