@import url('https://fonts.googleapis.com/css2?family=Silkscreen&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #292c29;
    color: #f0f5f0;
    background-image: url("BGRepeating.png");
    background-repeat: repeat-y;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.navbar {
    font-family: 'Silkscreen', cursive;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #333;
    padding: 10px;
}
.navbar a {
    font-family: 'Silkscreen', cursive;
    color: white;
    text-decoration: none;
    padding: 10px;
}
.navbar a:hover {
    font-family: 'Silkscreen', cursive;
    /* background-color: #555; */
}
h2 {
    font-family: 'Silkscreen', cursive;
}
h1 {
    font-family: 'Silkscreen', cursive;
    color: white;
}
.section {
    padding: 20px;
    margin: 20px 0;
}
.content {
    flex: 1;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    font-family: 'Abel', sans-serif;
    font-size: 24px;
    color: #f0f5f0;
}
.logo-spot {
    padding: 20px;
    margin-top: 50px;
    margin-bottom: 0px;
    text-align: center;
    vertical-align:bottom;
}
a {
    color: white;
    /* text-decoration: none; */
}
a:hover {
    color:darkred;
}
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    font-family: 'Abel', sans-serif;
}
@media screen and (max-width: 768px) {
    .footer {
        margin-top: 20px;
    }
    body {
	background-image: url("BGRepeating.png");
	background-position: center;
    }
}
