body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: black;
    overflow: hidden;
    color: white;
}

.stars {
    position: fixed;
    width: 100%;
    height: 100%;
 /*   background: url(images/nico.jpeg) no-repeat ;*/
    z-index: -1;
    align-items: right;
}

.container {
    display: flex; 
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    text-align: left;
    overflow-y: auto;
    background: url(images/bg-nico.jpeg) no-repeat;
    background-size: cover;
}

.content-container {
   
    overflow-y: auto;
    padding: 10px;    
    display: flex; /* Allow centering */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
     width: 100vw; 
    height: 100vh;
      /*  max-width: 1920px; */
   
}

.content {
    max-width: 950px;

    margin: 0 auto;
    text-align: left;
    background: rgba(252, 231, 61, 0.8);
    padding: 10px;
    border-radius: 20px;
    overflow-y: auto; 
}
.side-content {
max-width: 350px;
height: 100vh;
}

.nav-container {
    height: 10%;
    background: url(images/sstars.jpeg) no-repeat center center;
    background-size: cover;    
    display: flex; 
    align-items: center;
    justify-content: center;
    width: 100%; 
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: yellow;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 0 10px blue;
    position: relative;
    display: inline-block;
    animation: float 3s infinite ease-in-out;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px yellow;
    transform: scale(1.1);
}
   
.responsive-img {

    width: 100%; /* Make the image fill the width */
    height: 100%; /* Make the image fill the height */
    object-fit: contain; /* Ensures the whole image is visible without cropping */
    display: block;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}


/* Headings */
h1 {
    text-align: center;
    font-size: 2.5rem;
    text-shadow: 0 0 10px white;
}

/* Blue text */
.blue-text {
    color: #3366FF;
}

/* Black text (used for list items) */
.black-text {
    color: black;
}



/* Spacing between sections */
.spacing {
    margin-top: 20px;
}

/* List styling */
ul {
    list-style-type: disc;
    padding-left: 20px;
}

.r {
    background: #609ECC;
    border-radius: 6px;
    padding: 2px;
    color: #fce73d;
    text-shadow: 1px 1px 1px #000;
    margin-bottom: 2px;
    text-align: left;
}

.notice .highlight {
    color: #C11B17;
    font-size: 1.2rem;
}

.submission-info a {
    color: #3366FF;
    text-decoration: none;
}

.submission-info a:hover {
    color: #2E6EC4;
}

.template-download a {
    color: #6CBB3C;
}

.topics ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 1rem;
}

.submission-instructions .warning {
    color: #FF2400;
    font-weight: bold;
}

.download-link {
    color: #6CBB3C;
}

.download-link:hover {
    color: #4F9A2F;
}

.google-form {
    width: 110%;  /* Adjust the width to your preference (e.g., 80% of the container's width) */
    max-width: 1100px;  /* Optional: Set a maximum width to avoid it getting too large */
    height: 900px;  /* Adjust the height if needed */
    border: none;
    display: block;
    margin: 0 auto;  /* Centers the iframe horizontally */
}

/* Style for headings and paragraphs */
h1, h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.ws14 {
    font-size: 16px;  /* Adjust the font size as necessary */
    line-height: 1.5;
}

ul {
    margin: 0;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Style for the Pay button */
.pay-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 20px;
}
