body {
    color: white;
    font-size: 30px;
    font-family: Verdana, sans-serif;
    background-image: url(../asfalt.png);
}

h1 {
    text-align: center;
    font-size: 80px;
    font-weight: bold;
}

a {
    color: orange;
}

.info {
    text-align: center;
}

.highlight {
    background-color: rgb(29, 116, 59);
    color: white;
    text-align: center;
    font-weight: bold;
}

button {
    height: 30px;
    width: 100px;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    background-color: rgb(29,116,59);
    top: 0;
    right: 0;
    margin-top: 20px;
    margin-right: 20px;
    position: absolute;
}

@media only screen and (max-width:719px) {
    button {
        display: none;
    }
    
    body {
        text-align: left;
    }
}