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

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

h1 {
    text-align: center;
    font-size: 8rem;
}

.container {
    text-align: center;
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 30px;
    border-radius: 5px;
    background-color: aqua;
    color: black;
    font-weight: 600;
    font-size: 19px;
    cursor: pointer;
    transition: background-color 0.25s;
}

.btn:hover {
    background-color: rgb(10, 232, 158);
}