html, body {
    padding: 0;
    margin: 0;
    overflow: hidden;
    background-color: #252525;
    color: white;
    font-family: 'Roboto', sans-serif;
}

.allcontent{
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
}
.wrapper{
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.textbox{
    width:90%;
    text-align: center;
}

.textbox p{
    font-size: 2rem;
}

.textbox h1{
    font-size: 1.5rem;
    font-weight: 300;
}

a{
    color: white;
}

footer{
    position: absolute;
    width: 100%;
    height: 10vh;
    text-align: center;
    font-weight: 300;
}

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

    .allcontent{
        height: 90vh;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-direction: column;
    }
    
    .wrapper{
        height: 90vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}