@font-face {
    font-family: "KenneyPixel";
    src: url("KenneyPixel.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "KenneyPixelSquare";
    src: url("KenneyPixelSquare.ttf");
    font-weight: normal;
    font-style: normal;
}

:root {
    --custom-font: "KenneyPixel", Arial, sans-serif;
}

* {
    font-family: var(--custom-font);
}

body {
    background: url("BrickWalls.png"), repeat;
}

.logo {
    display: block;
    margin: auto;
    height: 100px;
    width: 500px;
    filter: none;
}

.content {
	background: rgba(0, 0, 0, 0.5);
	border: 2px solid white;
}

.content h1{
    color: white;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
}

.store {
    background: url("StoreButton1.png");
    background-size: cover;
    width: 220px;
    border: none;
    filter: none;
}

.store:hover {
    background: url("StoreButton2.png");
    background-size: cover;
    filter: none;

}

.store:active {
    background: url("StoreButton2.png");
    background-size: cover;
    filter: none;
}


.source {
    background: url("SourceButton1.png");
    background-size: cover;
    width: 220px;
    border: none;
    filter: none;
}

.source:hover {
    background: url("SourceButton2.png");
    background-size: cover;
    filter: none;

}

.source:active {
    background: url("SourceButton2.png");
    background-size: cover;
    filter: none;
}

.store p {
    visibility: hidden;
}

.source p {
    visibility: hidden;
}


.navbar {
	display: flex;
  	justify-content: center;
}

.navbar-links ul {
	display: flex;
	position: sticky;
}

.navbar-links ul li {
	list-style: none;
	position: sticky;
}

.navbar-links ul li a {
	display: block;
	position: sticky;
}

@media (max-width: 700px) {
    .logo {
        height: 100px;
        width: 350px;
    }
    nav {
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }
}