body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #140B5C; /* Background color with desired color */
    opacity: 0.7; /* Adjust the opacity as needed */
    filter: blur(10px); /* Apply the blur effect */
    z-index: -1; /* Place the background behind the content */
}

body {
    background-image: url('../images/background.gif');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
    font-family: "Arial Black", sans-serif;
}


.section { 
    padding: 20px; /* Add some padding for spacing within the box */
    box-sizing: border-box; /* Include padding in the total width */
    margin: 0 auto; /* Center the section horizontally */
    text-align: center; /* Center the text content within the section */
    width: 60%;
}


.title {
    font-weight: bold;
    text-decoration: underline;
    font-size: 30px;
    margin-top: 20px;
}

.section-title {
    font-weight: bold;
    text-decoration: underline;
    font-size: 25px;
    margin-top: 20px;
}
.subtitle {
    font-size: 17px;
    margin-top: 10px;
    text-decoration: underline;
}

.section-content {
    margin: 20px;
}

.details {
    font-size: 20px;
}

.lists {
    font-weight: bold;
    text-align: center; /* Center the list heading */
}

ul {
    list-style-type: square;
    text-align: left; /* Center the list style type */
    padding-left: 0;
    width: 60%;
    margin: 0 auto;/* Remove default left padding for the list */
}

ul li {
    text-align: left; /* Center the list items */
    margin: 5px 0; /* Add space between list items */
}


@media (max-width: 768px) {
.section { 
    padding: 20px; /* Add some padding for spacing within the box */
    box-sizing: border-box; /* Include padding in the total width */
    margin: 0 auto; /* Center the section horizontally */
    text-align: center; /* Center the text content within the section */
    width: 100%;
}

}