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

body {
    background-color: navy;
}

h1 {
    color: orangered;
    font-weight: 700;
    font-size: 2rem;
    position: absolute;
    top: 20px;
}

.container {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.count-container {
    display: flex;
    gap: 50px;
    margin-bottom: 20px;
}

h2 {
    color: white;
    font-size: 5rem;
    font-weight: 700;
}

.btn {
    padding: 8px 40px;
    border-radius: 10px;
    font-size: 1.5em;
    font-weight: 600;
    border: 3px solid;
    color: black;
    background-color: cyan;
    cursor: pointer;
    transition: background-color 0.25s;
}

.btn:hover {
    background-color: #0bc7c7;
}