@font-face {
    font-family: Syne;
    src: url('../font/Syne-Regular.woff2') format('woff2'),
         url('../font/Syne-Regular.woff') format('woff'),
         url('../font/Syne-Regular.ttf') format('truetype');
  }

body{
    text-align: center;
    font-family: Syne;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: whitesmoke;
}


@media only screen and (min-width: 768px) {
    
    body{
        text-align: left;

    }
    
}
ul {
    padding: 0;
    margin:20px;
}


li {
    list-style-type: none;
    padding: none;
    padding-top: 5px;
    padding-bottom: 5px;
}

@media only screen and (min-width: 768px) {
    
    li {

        list-style-type: circle;
        padding-left: 15px;
        
    }
    
}


p {
    cursor: default;
    display: inherit;
}

h1 {
    cursor: default;
}

h2 {
    cursor: default;
    font-size: 200%;
    margin: 30px;
}

h3 {
    cursor: default;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: whitesmoke;
}

main {
    overflow: hidden;
    width: 100%;
    padding: 0;
}



.textbox {
    margin: 0;
    margin: 0;
    
    padding: 30px;
    min-height: 300px;
    background-color:whitesmoke;
    display: block;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover ;
    transition: background-size 0.2s ease-in;
    -moz-transition: background-size 0.2s ease-in;
    -ms-transition: background-size 0.2s ease-in;
    -o-transition: background-size 0.2s ease-in;
    -webkit-transition: background-size 0.2s ease-in;
    
}


@media only screen and (min-width: 768px) {
    
    .textbox {
        
        background-size: 100%;
        transition: background-size 0.2s ease-in;
        -moz-transition: background-size 0.2s ease-in;
        -ms-transition: background-size 0.2s ease-in;
        -o-transition: background-size 0.2s ease-in;
        -webkit-transition: background-size 0.2s ease-in;
    }

    .textbox:hover {
    
        background-size: 120%;
    }
}





.textbox h3 {
    font-size: 180%;
}

.textbox a{
    text-decoration: underline;
    
}




footer {
    
    float: none;
    display: block;
    overflow: hidden;
    background-position-x: 115%;
    background-position-y: 15%;
    background-repeat: no-repeat;
    background-size: 400px;
    background-color: rgb(20,20,20);
    padding: 20px 40px 40px 40px;
}

@media only screen and (min-width: 768px) {
    
    footer {
        
        
    }
}

.bottomenu {

}

.bottomenu a {
    text-decoration: none;
    color: rgb(200,200,200);
    display: block;
    margin: 20px;

}

.bottomenu a:hover{

    color: rgb(240,240,240);

}

footer p {
    font-size: 80%;
    margin: 20px 20px 0 20px;
    color: rgb(200,200,200);
}

footer h3 {
    margin: 20px;
    color: rgb(200,200,200);
    font-size: 180%;
    cursor: pointer;

}

