html, body {
    font-family: Lato, Verdana, Geneva, Tahoma, sans-serif;
    background-image: url('../assets/images/background.png');
    background-attachment: fixed;
    background-size: cover;
}

p {
    font-size: 1em;
}

a {
    color: orange;
    text-decoration: none;
    border-bottom: dotted 2px black;
}

.topmenu {
    
}

a:hover {
    color: black;
}

.header {
    text-align: center;
    color: white;
}

.header h1,h2 {
    text-shadow: 2px 5px 7px black;
    color: white;
    margin-top: 50px;
}

.content {
    background-color: rgba(0,0,0,.7);
    color: white;
    border-radius: 10px;
}

.content p,h1,h2,h3,h4,h5,ul,li {
    color: white;
}


.orange {
    color: orange;
}

.content img {
    border-radius: 5px;
    max-width: 100%;
}

.center {
    text-align: center;
}

.footer {
    background-color: rgba(0,0,0,.7);
    color: lightgray !important;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 12px;
    text-align: center;
}

img.resize {
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 1024px) {
    .container {
        flex-direction: column;
        max-width: 90%;
    
    }
    img {
        max-width: 100%;
        height: auto;
    }
}