* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono';
    background-color: bisque;
}

.container {
    background-color: aliceblue;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 3rem;
    padding: 1em;
    height: 400px;
    border: 3px solid #000;
    border-radius: 220%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-items: center;
    box-shadow: 0 0 20px #000;
}

.top {
    position: relative;
    top: 50px;
    border: 3px solid #000;
    border-radius: 10px;
    width: 2px;
    height: 50px;
    margin: 0 auto;
    box-shadow: 0 0 20px #000;
}

.container-buttons {
    display: flex;
    flex-direction: row;
    gap: 1em;
}

h1,
p {
    font-size: 3em;
}

button {
    background-color: cornsilk;
    padding: 0.7em;
    font-size: 1.5em;
    border: 2px solid #000;
    border-radius: 10%;
}

button:hover {
    box-shadow: 0 0 10px #6d6c6c;
}

.pausado {
    color: red;
}