
html{ 
    background-color: rgb(204, 240, 255);
    background-repeat:no-repeat;
    background-attachment: fixed;
    font-family: 'Lato', 'Courirer';
    height: 100%;
    background-size: cover;
}

a:link {
    color: black;
    text-decoration: none;
    font-family: 'Lato', 'Courirer';
}

a:visited {
    color: black;
    text-decoration: none;
    font-family: 'Lato', 'Courirer';
}

header{
    display: block;
    position: relative;
    width:70%;
    margin: auto;
}

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

h1{
    border-top: solid 2px;
    border-bottom: solid 2px;
    font-size: 5rem;
    font-weight: 900;
    text-align: center;
    margin: 2% auto 2% auto;
    width: -moz-max-content;
    width: max-content;
}

h2{
    margin :auto;
    font-size: 3rem;
    font-family: "lato";
    text-align: center;
}

p{
 text-align: center;
}

.content{
    margin: auto;
    margin-bottom: 5%;
    padding: 2% 0 2% 0;   
    background-color: rgba(245,245,245,1);
    width: 70%;
    height: -moz-max-content;
    height: max-content;
    border-radius: 15px;
}

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

    h1{
        width: 80%;
        font-size: 3rem;
    }
    
    h2{
        font-size: 2rem;
    }

}

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

    .content{
        width: 100%;
        margin: 0;
        background-color: rgba(245,245,245,0.8);
    }

}


















