body{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: darkslategray;
    font-weight: bold;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}
h1{
    color: goldenrod;
    text-align: center;
    margin-top: 150px;
    font-size: 50px;
}
p{
    color: white;
    text-align: center;
    font-size: 25px;
}
#message-el{
    font-style: italic;
}
button{
    width: 150px;
    height: 50px;
    margin-left: 560px;
    background-color: goldenrod;
    color: darkgreen;
    font-weight: bold;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
}
@media only screen and (max-width: 600px) {
    h1{
        font-size: 40px;
        margin-top: 100px;
    }
    p{
        font-size: 20px;
    }
    button{
        margin-left: 30%;
    }
}
::-webkit-scrollbar{
    display: none;
}