*{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

html, body{
    height: 100%;
    width: 100%;
    overflow: hidden;
    color: black;
}

.center-content{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wrapper{
    margin-bottom: 50px;
}

.logo-image{
    max-width: 300px;
}

.content-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.link{
    color: black;
    text-decoration: none;
}

.only-mobile{
    display: none;
}

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

    .content-wrapper, .center-content{
        width: 100%;
    }

    .logo-image{
        max-width: 250px;
    }

    .content-box{
        padding: 0 30px;
        width: calc(100% - 60px);
    }

    .only-mobile{
        display: block;
    }
}