@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');

html,body {
    margin: 0;
    padding: 0;
    font-family: "Cinzel", serif;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}

body::-webkit-scrollbar {
  display: none; /* Chromium based */
}

#website-home,#website-overview,#website-lore,#website-gallery {
    background-size: cover;
    background-position: center;
    height: 100vh;
    padding:3%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#website-home {
    /*background-image: url('../assets/placeholder-2-1.webp');*/
    background-color: #ff0000;
    justify-content:center;
    align-items: center;
}

#website-overview {
    /*background-image: url('../assets/placeholder-2-2.webp');*/
    background-color: #00ff00;
    justify-content:left;
    align-items: center;
}

#website-overview {
    /*background-image: url('../assets/placeholder-2-2.webp');*/
    background-color: #00ff00;
    justify-content:left;
    align-items: center;
}

#website-lore {
    /*background-image: url('../assets/placeholder-2-3.webp');*/
    background-color: #ffff00;
    justify-content:right;
    align-items: center;
}

#website-gallery {
    /*background-image: url('../assets/placeholder-2-3.webp');*/
    background-color: #00ffff;
    justify-content:left;
    align-items:center;
    flex-direction:column;
}

.website-home-content {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: black;
}

.website-overview-content {
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    color: black;
}

.website-overview-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.website-overview-content ul {
    list-style-type:none;
    font-size: 21px;
}

.website-lore-content {
    padding: 20px;
    border-radius: 10px;
    text-align: right;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.website-lore-content h1 {
    text-align:right;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.website-lore-content p {
    text-align:right;
    width:50%;
    font-size: 21px;
}

.website-gallery-content {
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    color: black;
}

.website-gallery-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.website-gallery-content p {
    font-size: 21px;
}

