body {
    background-color: rgb(211, 235, 255);
}

nav {
    grid-area: nav;
    display: flex;
    justify-content: space-around;
    background-color: rgb(255, 255, 255);
    padding: 25px;
    font-size: xx-large;
}

a:hover {
    background-color: rgb(178, 233, 255);
    transform: scale(1.25);
    transition: all 0.2s ease-in-out;
    border-radius: 25px;
}

h2 {
    font-size: 35px;
    text-align: center;
}

p {
    display: flex;
    flex-direction: column;
    text-align: center;
}

div {
    background-color: rgb(255, 255, 255);
    border-radius: 25px;
    padding-top: 10px;
    padding-bottom: 20px;
}

.title {
    text-align: center;
    font-size: 25px;
}

a{
    color: rgb(0, 106, 255);
    text-decoration: none;
}

.main {
    padding-left: 145px;
    padding-bottom: 25px;
}

h4 {
    font-size: large;
    text-align: center;
}