/*
    HopperMC Web Styling
    Made by ItzXyloYT
    May 2024
*/
@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poetsen+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abel&family=Oswald:wght@200..700&family=Poetsen+One&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('wallpaper.jpg');
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.5);
    font-family: "Abel", sans-serif;
    font-weight: 400;
    font-style: normal;
}

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

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
}

/* Header Titles */
.titling h1 {
    margin-top: 50px;
    color: white;
    margin-bottom: 6px;
    font-family: "Poetsen One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.titling h3 {
    margin-bottom: 30px;
    font-family: "Poetsen One", sans-serif;
    font-weight: 400;
    color: white;
    font-style: normal;
}

/* Other */
.logo img {
    max-width: 100px;
}

main {
    padding-top: 100px;
    text-align: center;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5em;
}
