/* Apply the background image */
body {
    background: url('../images/BackGround.png') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: 100vh;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

/* Center the title and text */
.content_logo {
    display: flex;
    flex-direction: row;
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    gap: 20px; /* Space between each div */
    color: white;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);

}

.content_title {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    gap: 20px; /* Space between each div */
    color: white;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);

}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: center; /* Centers the links */
    background: rgba(0, 0, 0, 0.8); /* Slightly transparent dark background */
    padding: 10px 0;
    margin-top: 10px; /* Spacing below the title */
}

/* Remove list styling */
.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px; /* Space between links */
}

/* Style links */
.navbar ul li a {
    text-decoration: none;
    color: white; /* White text */
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    transition: 0.3s ease;
}

/* Hover effect */
.navbar ul li a:hover {
    background: red; /* Highlight on hover */
    color: black;
}


.content_row {
    display: flex;
    flex-direction: row; /* Aligns children side by side */
    align-items: center; /* Centers content vertically */
    justify-content: flex-start; /* Centers everything horizontally */
    gap: 30px; /* Adds spacing between logo and title */
}

.content_column {
    display: flex;
    flex-direction: column; /* Aligns children side by side */
    align-items: center; /* Centers content vertically */
    justify-content: center; /* Centers everything horizontally */
    gap: 30px; /* Adds spacing between logo and title */
}
.content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    gap: 20px; /* Space between each div */
    color: white;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}
.content_PH0-CD {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    gap: 20px; /* Space between each div */
    color: white;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}
