.page{
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'PT Sans', sans-serif;
    justify-content: space-around;
    min-height: calc(100% - 60px);
}
.logo{
    max-width: 579px;
}

.title{
    font-size: 36px;
    color: #2e2b7a;
    text-transform: uppercase;
}
footer{
    font-size: 28px;
}
footer p{
    margin: 5px 0;
}
a{
    color: #000;
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}


@media (max-width: 1200px) {
    .title{
        font-size: 30px;
    }
    footer{
        font-size: 20px;
    }
    footer p{
        margin: 3px 0;
    }
}
@media (max-width: 768px) {
    .title{
        font-size: 20px;
    }
    footer{
        font-size: 16px;
    }
    footer p{
        margin: 3px 0;
    }
}