* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    height: 100%;
}

body {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url('source/bgimg.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    position: relative;
}

.container {
    display: flex;
    height: 80px;
    overflow: hidden;
}

.container .mainImg {
    max-width: 366px;
    height: 39px;
    position: absolute;
    top: 4%;
    left: 2%;
}


.header {
    background-color: rgba(48, 48,48, 90%);
    padding: 10px 0;
}

.header h1 {
    text-align: center;
}

.nav {
    list-style: none;
    display: flex;
    justify-content: right;
    gap: 50px;
    margin-top: 7px;
    margin-left: 80vw;
}

@font-face {
    font-family: 'MyMinecraftFont';
    src: url("fonts/Minecraftchmc.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

.nav img {
    width: 10vw;
    height: 3vw;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-family: 'MyMinecraftFont', serif;
    font-size: 2.5vw;
}

footer {
    text-align: center;
    padding: 6px 0;
    background: #333;
    color: #fff;
    margin-top: 81vh;
}

footer p {
    font-size: 25px;
    font-family: 'MyMinecraftFont', serif;
}