body {
    background-color: rgb(109, 166, 180);
    display: flex;
    flex-direction: column;
}

h1 {
    color: #23343e;
    border-style: solid;
    border-color: #a8c8dd;
    border-radius: 60px;
    text-align: center;
    font-family: cursive;
    margin: auto;
    width: 30vw;
    padding: 2vh;
    position: center;
    background-color: rgba(205, 229, 224, 0.3)
}

p {
    font-size: large;
    font-family: monospace;
    color: #23343e;
    border-style: solid;
    border-color: #a8c8dd;
    border-radius: 60px;
    text-align: center;
    margin: auto;
    width: 30vw;
    padding: 2vh;
    position: center;
    background-color: rgba(205, 229, 224, 0.3)
}

a {
    font-size: large;
    font-family: monospace;
    color: #23343e;
    border-style: solid;
    border-color: #a8c8dd;
    border-radius: 60px;
    text-align: center;
    margin: auto;
    width: 10vw;
    padding: 2vh;
    position: center;
    background-color: rgba(205, 229, 224, 0.3);
    transition: transform 0.3s;
}

a:hover {
    transform: scale(1.1);
}

a:active {
    transform: scale(0.9);
}