body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    background-color: rgba(109, 184, 233);
}

main {
    min-height: 80vh;
}

.site_titles {
    display: flex;
    justify-self: center;
    padding: 10px 0;
}

.site_subtitles {
    display: flex;
    justify-self: center;
    font-size: 18px;
    padding: 0 10px;
    text-align: center;
}

.button {
    padding: 10px;
    color: #00126D;
    background-color: #fff;
    font-weight: 600;
    font-size: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #00126D;
    color: #fff;
    transform: scale(1.1);
}

.button:active {
  transform: scale(0.95);
  background-color: #00126D;
  color: #fff;
}

@media (max-width: 1024px) {

}