body {
    background: url("background.png") no-repeat center center fixed;
    background-size: cover;
    color: white;
    font-family: Verdana;
    text-align: center;
    margin: 0;
    padding: 0;
}

.main-box {
    background: rgba(86, 91, 168, 1);
    padding: 30px;
    text-align: center;
    max-width: 700px;
    width: 90%;
    margin: 50px auto;
    border: 10px solid white; /* Orange border */
}

h1 {
    background: #414580;
    color: white;
    padding: 10px;
}

.slider {
    margin-top: 20px;
}

.tabs {
    display: flex;
    justify-content: center;
    background: #414580;
    padding: 5px;
    flex-wrap: wrap;
}


.tabs button {
    padding: 5px 10px;
    font-size: 14px;
    white-space: nowrap;
}

.active {
    color: white;
    text-decoration: underline;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.images {
    text-align: center;
    display: flex;
    justify-content: center; /* Centers images horizontally */
}


.slider-img {
    width: 100%;
    max-width: 400px; /* Limits the image size */
    height: auto;
    border: 10px solid white; /* Black border */
}

a {
    text-decoration: none;
    color: #ab2b2b; /* Light gray text */
    display: block;
}

a:hover {
    color: #db5a5a;
}