@font-face {
    font-family: 'viking';
    src: url(../fonts/viking.otf);
}

body {
    background-color: black;
    color: rgb(8, 6, 6);
    font-family: 'viking', serif; 
    margin: 0;
    cursor: url("../images/axecursor.png"), grab;

    background-image: url('../images/viking\ ship.png'); /* Adjust path as needed */
    background-size: cover; /* Ensures the image covers the entire viewport */
    background-position: center; /* Centers the image */
    background-attachment: fixed; /* Keeps the background fixed while scrolling */
    background-repeat: no-repeat;
}

.side {
    width: 200px;
    height: 100vh; 
    background-color: #333;
    color: white;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px; 
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, #000000, transparent);
}

.side h1 {
    font-family: 'viking', serif; 
    text-align: center;
    font-size: 1.8rem;
    color: #ffcc00; 
    text-shadow: 2px 2px 5px rgba(255, 204, 0, 0.7);
    text-decoration: underline;
}

.side button {
    font-family: 'viking', serif; 
    font-size: 1.2rem;
    color: white;
    background-color: #550000;
    border: 2px solid #ffcc00; 
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    text-shadow: 1px 1px 4px black;
    transition: transform 0.2s, background-color 0.2s;
}

.side button:hover {
    background-color: #770000; 
    transform: scale(1.05); 
}

.side img {
    width: 50px;
    margin-top: auto;
}

#author {
    opacity: 0.7;
    font-size: 0.9rem;
    text-align: center;
    margin-top: auto;
}

#hr, #hr2 {
    background-color: #ffcc00; 
    height: 3px;
    border: none;
}

#title {
    display: flex;
    flex-direction: column; 
    align-items: center;
    height: 250px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7); /* Transparent background */
    border-bottom: 3px solid #ffcc00;
    position: relative;
}

#title h1 {
    font-size: 4rem;
    font-family: 'viking', serif;
    color: #ffcc00;
    text-shadow: 3px 3px 8px rgba(255, 204, 0, 0.8), 2px 2px 6px black;
    margin: 0;
    line-height: 1.2;
}

.underbuttons {
    position: absolute;
    bottom: 10px; 
    right: 20px;  
}

#Discover {
   text-decoration: underline 4px gold;
   font-size: 34px;
}

@media (max-width: 2560px) {
    #title h1 {
        font-size: 3.5rem; 
    }
}

@media (max-width: 1920px) {
    #title h1 {
        font-size: 3.2rem; 
    }
}

@media (max-width: 1440px) {
    #title h1 {
        font-size: 3rem; 
    }
}

@media (max-width: 1280px) {
    #title h1 {
        font-size: 2.8rem; 
    }
}

#open, #close {
    font-family: 'viking', serif;
    margin: 15px;
    background: black;
    color: #ffcc00; 
    border: 2px solid #ffcc00;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 2px 2px 10px #ffcc00;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    position: fixed;
   left: 270px;
    
}

#open:hover, #close:hover {
    transform: scale(1.05);
    background-color: #333;
    box-shadow: 4px 4px 7px gold;
    transform: scale(1.1);
}

#Sidebar {
    width: 250px;
    height: 100%;
    background-color: #333;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.content {
    margin-left: 27rem;
    padding: 20px;
    max-width: 900px;
    display: flex;
    flex-direction: column;
  
}

#jobapp{
    text-decoration: none;
    color: whitesmoke;
}
#firstpost{
    text-decoration: none;
    color: whitesmoke;
}
#update{
    text-decoration: none;
    color: whitesmoke;
}
.paragraphs {
    max-width: 800px; 
    width: 90%; 
    margin: 20px auto; 
    padding: 30px; 
    font-size: 1.4rem; 
    line-height: 1.8; 
    color: white;
    font-family: 'viking', serif; 
    background-color: rgba(0, 0, 0, 0.6); 
    border-radius: 10px; 
    text-align: center; 
    border: 2px solid #ffcc00;
}

.paragraphs h2 {
    color: white;
    font-family: 'viking', serif; 
    text-decoration: underline #ffcc00;
    text-shadow: 1px 1px 6px #ffcc00;
}

.paragraphs p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

#footer {
    font-family: 'viking', serif;
    text-align: center;
    padding: 10px;
    background: rgba(34, 34, 34, 0.6); /* Semi-transparent background */
    color: white;
    font-size: 1.1rem;
    text-shadow: 1px 1px 5px #ffcc00;
    position: fixed;
    bottom: 0;
    width: 100%;
}

#Northern {
    background: #1c1c1c;
    color: #bfa76f;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    text-transform: uppercase;
    border: 2px solid #8b5e3c;
    padding: 12px 30px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

#Northern:hover {
   border-color: #ffcc00;
    transform: scale(1.1);
    color: rgb(201, 204, 30);
}

#support-button {
    background: #1c1c1c;
    color: #bfa76f;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    text-transform: uppercase;
    border: 2px solid #8b5e3c;
    padding: 12px 30px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

#support-button:hover {
    background: rgba(0, 0, 0, 0.6); 
    transform: scale(1.1);
    color: rgb(235, 220, 19);
}

#newsletter-button {
    background: #1c1c1c;
    color: #bfa76f;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    text-transform: uppercase;
    border: 2px solid #8b5e3c;
    padding: 12px 30px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

#newsletter-button:hover {
    background: rgba(0, 0, 0, 0.6); 
    transform: scale(1.1);
    color: rgb(216, 219, 30);
}

#faq-button {
    background: #1c1c1c;
    color: #bfa76f;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    text-transform: uppercase;
    border: 2px solid #8b5e3c;
    padding: 12px 30px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

#faq-button:hover {
    background: rgba(0, 0, 0, 0.6); 
    transform: scale(1.1);
    color: rgb(216, 219, 30);
}

#imgset {
    position: absolute;
    bottom: 100px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    border: none;
    border-radius: 200px;
}

#imgset:hover {
    box-shadow: -7px 0 10px rgba(0, 217, 255, 0.5), 7px 0 10px rgba(0, 195, 255, 0.5);
    transform: scale(1.1);
    border: solid 1px;
}

@media (max-width: 768px) {
    .side {
        width: 150px;
    }

    .content {
        margin-left: 160px;
    }

    #open {
        margin-left: 10px;
    }

    .paragraphs {
        font-size: 1.2rem; 
        padding: 20px; 
    }
}

@media (max-width: 480px) {
    .side {
        width: 100%;
        transform: translateX(-100%);
    }

    .content {
        margin-left: 0;
    }

    #open {
        margin: 10px;
        width: 100%;
    }

    .paragraphs {
        font-size: 1.1rem; 
        padding: 15px;
    }

    .underbuttons {
        flex-direction: column;
        align-items: center;
    }

    .underbuttons button {
        margin-bottom: 10px;
        width: 100%;
    }
}

.underbuttons button {
    margin-right: 13px;
}
@media (max-width: 2560px){
    .blog{

    }
}
.Blog {
    
    padding: 20px;
    max-width: 900px;
    display: flex;
    position: absolute;
    flex-direction: column;
     max-width: 800px; 
    width: 12%; 
    margin: 20px auto; 
 left: 75%;
    font-size: 1.4rem; 
    line-height: 1.8; 
    color: white;
    font-family: 'viking', serif; 
    background-color: rgba(0, 0, 0, 0.6); 
    border-radius: 10px; 
    text-align: center; 
    border: 2px solid #ffcc00;

}

.News {
   
}

.paragraphs h2 {
    color: white;
    font-family: 'viking', serif; 
    text-decoration: underline #ffcc00;
    text-shadow: 1px 1px 6px #ffcc00;
}

.paragraphs p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.Updates {
  
}


.Blog hr{
   width: 100%;
}
.Blog h2{
    color: white;
    font-family: 'viking', serif; 
    text-decoration: underline #ffcc00;
    text-shadow: 1px 1px 6px #ffcc00;
}