body {
    background-color: #f2f2f2;
    font-family: Arial, Helvetica, sans-serif;
}

.title {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 3%;
    margin-bottom: 50px;
}

.logo {
    width: 300px;
    height: auto;
}

.main {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    width: 100%;
    flex-direction: row;
}

@media screen and (max-device-width: 900px) {
    .main {
        flex-direction: column;
        align-items: center;
    }
}

.box {
    background-color: #0087b1;
    width: 300px;
    height: 375px;
    border: #006280 solid 1px;
    box-shadow: 5px 5px 3px #777;
    margin: 50px 8% 50px;
}

.buttons {
    display: inline-block;
    width: 200px;
    margin-top: 80px;
}

.buttons a{
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border: #006280 solid 1px;
    box-shadow: 5px 5px 3px #444;
    margin: 0px 7%;
    padding: 15px;
}

.buttons a:hover{
    background-color: #cf9a52;
    color: #fff;
    border: #b18547 solid 1px;
    box-shadow: 5px 5px 3px #555;
}

.text {
    text-align: center;
    color: #fff;
    width: 275px;
    margin: auto;
    margin-top: 100px;
    font-size: large;
    line-height: 1.25;
}

.footer {
    width: 100%;
    bottom: 10px;
    text-align: center;
    font-size: small;
    align-self: flex-end;
}

.footer a {
    color: #000;
    text-decoration: none;
}