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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    font-family: 'Montserrat', sans-serif;
    color: rgb(255, 255, 255);
    background-color: rgba(82, 82, 82);
}

div {
    padding: 50px;
}

p {
    font-size: 36px;
}

button {
    margin: 0 30px;
    padding: 10px 30px;
    background: none;
    border: 2px solid #00cfff;
    border-radius: 5px;
    color: #00cfff;
    font-size: 36px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .3s, box-shadow .3s;
    box-shadow: 3px 3px 10px #00cfff
}

button:hover {
    color: #00ffae;
    box-shadow: 3px 3px 10px #00ffae;
}

a {
    margin-top: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    transition: transform 0.3s;
}

a:hover {
    color: #ddd;
    transform: scale(0.9);
}