@import url('https://fonts.googleapis.com/css?family=Ubuntu');

body, html{
    height: 100%;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    color: #485155;
    text-align: center;
    background: linear-gradient(to bottom right, #FF9D2E, #5792AA);
}

#container {
    font-size: 30px;
    display:flex; 
    justify-content: center; 
    flex-direction: column; 
    height: 100%; 
    align-items: center;
}

#container > h1 {
    margin: 0;
    border-bottom: 2px #485155 solid;
    margin-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
}


#container a {
    color: #485155;
    text-decoration: none;
}

#container a:hover {
    color: #5792AA;
    text-decoration: none;
}

@media screen and (max-width: 480px) {
    #container {
        font-size: 17px;
    }

    #container a {
        font-size: 25px;
    }
}