:root {
    background-color: #d2f5f5;
    ;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 62.5%;
    font-family: 'sans-serif';
}

h1 {
    font-size: 5.4rem;
    color: black;
    margin-bottom: 5rem;
}

.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 80 rem;
    margin: 0 auto;
    padding: 2rem;
    z-index: 2;
}

button {
    text-decoration: none;
    height: 50px;
    width: 150px;
    font-size: 20px;
    margin-left: 25px;
    border-radius: 100px;
    outline: none;
    box-shadow: 10px black;
}

button:hover {
    cursor: pointer;
    transition: transform 0.5s;
    transform: scale(1.2);
}

.button {
    display: inline-block;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #7aa8b7;
    border-radius: 6px;
    outline: none;
    margin: 15px;
    font-size: 18px;
    font-family: sans-serif;
    font-weight: 500;
}