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

body {
    background-color: black;
    color: white;
    font-family: 'viking', serif; 
    margin: 0;


    background-image: url('../Images/background.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);
}

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

.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.6); /* 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;  

    
}

#img1 {
    border-radius: 1000px;
    height: 35px;
    box-shadow: 3px 3px 6px red;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
   
}

#img1:hover {
    box-shadow: 7px 7px 7px darkred;
    transform: scale(1.1); 
}

#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 {
    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;
}

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


.content {
    margin-left: 220px;
    padding: 20px;
    max-width: 900px;
}

.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;
    margin-left: 200px;
}

.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{
    width: 150px;
    border: none;
    border-radius: 10px;
    box-shadow: 3px 3px 6px white;
    background-color: black;
    color: white;
    padding: 6pz;
    margin-right: 30px;
transition: box-shadow 0.2s ease, transform 0.2s ease;
}

#Northern:hover{
   box-shadow: 5px 5px 8px white;
   transform: scale(1.1);
}

#support-button{
    border: none;
    border-radius: 100px;
    background-color: black;
    color: gold;
    text-shadow: 1px 1px red;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    margin-right: 10px;
}
#support-button:hover{
    box-shadow: 5px 5px 8px white;
    transform: scale(1.1);
}
#newsletter-button{
    border: none;
    border-radius: 100px;
    background-color: black;
    color: gold;
    text-shadow: 1px 1px red;

    text-shadow: 1px 1px red;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    margin-right: 10px;
}
#newsletter-button:hover{
    box-shadow: 5px 5px 8px white;
    transform: scale(1.1);
}
#faq-button{
    border: none;
    border-radius: 100px;
    background-color: black;
    color: gold;
    text-shadow: 1px 1px red;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    margin-right: 10px;
}
#faq-button:hover{
    box-shadow: 5px 5px 8px white;
    transform: scale(1.1);
}

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

#imgset:hover{
   box-shadow: 5px 5px 8px white;
   box-shadow: -5px -5px 8px white;
    transform: scale(1.1); 
}
@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 {
        transform: translateX(-100%);
    }

    .content {
        margin-left: 0;
    }

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

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


