@media print {
    #content{
        height: 100%;
        padding: 25px;
    }

    body{
        height: 100vh;
        margin: 0;
    }
}

#content{
    margin:0px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

@media only screen and (min-width: 768px) {
    #content{
        width: 60%;
    }
}


#background{
    background-color: black;
    position: fixed;
    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

    background-image: url("background1.jpg");
    background-size: cover;
    background-position: center center;
}


#content>div{
    background-color: antiquewhite;
    border-radius: 10px;
    padding: 20px;
    margin: 5px;
}



#content>#title{
    text-align: center;
    letter-spacing: 0.205em; 
    font-size: 35px;
}
