body {
    background-color: #4f4f69;
    font-family: Arial, sans-serif;
    overflow: auto;
}

h1 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 5px;
    color: white;
}
a {
    color: rgb(35, 228, 218); /* Default color */
    text-decoration: none; /* Removes underline */
}

ul {
    padding-left: 20px;
}



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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #21212c;
    height: 100px;
    color: #fff;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    z-index: 1000; /* Ensures it's above everything */
}

.logo{
    text-transform: uppercase;
}

.menu{
    display: flex;
}

.menu a {
    color: white;
    text-decoration: none;
    padding: 0px 10px;
    transition: 0.5s;
    display: inline-block;
}

.menu a:hover {
    color: #a8a8bd;
    transition: 0.3s;
}

.content {
    position: relative;
    padding: 1%;
    padding-left: 10%;
    padding-right: 10%;
    margin-top: 100px;
}

.content img {
    display: block;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.content h3 {
    color: white;
}

.content p {
    color: white;
    margin-bottom: 20px;
}

.content h1 {
    color: #5effc1;
}

.content h2 {
    color: #6dffa594;
}

.container {
    display: flex;
    align-items: center; /* Aligns text and image vertically */
    max-width: 800px;
    margin: auto; /* Centers the block */
    margin-top: 200px;
    gap: 20px; /* Space between image and text */
}

.container img {
    width: 300px; /* Adjust the image size */
    height: auto;
    border-radius: 10px; /* Optional: Rounded corners */
}

.container h2 {
    color: white;
}
.text {
    flex: 1; /* Allows text to take remaining space */
    font-size: 18px;
}

.image-container {
    display: flex;
    gap: 10px;
    text-align: center;
}

.image-container img{
    height: 400px;
}

.image-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column; /* Stack image and text vertically */
    align-items: center; /* Center items horizontally */
    margin-bottom: 20px;
  }

  .image-wrapper img {
    height: 400px;
  }
  .image-label {
    margin-top: 5px;
    font-size: 16px;
    color: rgb(198, 238, 248);
  }

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full height */
    background-color: #4f4f69;
}

video {
    border-radius: 20px; /* Rounded edges */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow */
}

.code-container {
    width: 90%;
    max-width: 1000px;
    height: 500px;
    overflow: auto;
    color: white;
    background-color: #727299;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    margin: 20px auto;
    font-family: monospace;
    white-space: pre;
  }