body, html {
    width: 100%;
    height: 100%;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-left: 25px;
    padding-right: 25px;
}

.logo {
    width: 100px;
}

.title {
    color: darkblue;
    margin-top: 20px;
    text-align: center;
}

.subtitle {
    margin-top: 5px;
    text-align: center;
}

.home-button {
    font-weight: bold;
    margin-top: 20px;
}

@media only screen and (max-width: 600px) {

    .logo {
        width: 70px;
    }

    .title, .subtitle, .home-button {
        font-size: 0.9rem;
    }

}