/* Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #add8e6; /* pastel blue */
    transition: background-color 0.5s; /* into pastel purple */
    font-size: 100%; 
}
header {
    width: 100%;
    text-align: center;
}

.banner img {
    max-width: 100%;
}

.content {
    display: flex;
    flex-direction: row;
    justify-content: center; /* Center the content horizontally */
    align-items: flex-start; /* Align items at the top */
}

/* Removed iframe-container styles */

.textbox {
    flex: 1;
    max-width: 50%;
    margin-right: 10px; /* Adjust margin for spacing */
    overflow: hidden;
    text-align: center;
}

.textbox .border {
    border: 4px solid #b19cd9; /* Purple border color */
    border-radius: 10px; /* Rounded corners */
    padding: 40px 20px;
    
    
}

.links {
    max-width: 50%;
    margin-left: 10px; /* Adjust margin for spacing */
}

.links ul {
    list-style-type: none;
    padding: 0;
}

.links li {
    margin-bottom: 10px;
}

.links li a {
    display: block;
    padding: 10px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
}

.bottom-textboxes {
    display: flex;
    justify-content: space-between; /* Evenly space the text boxes */
    margin-top: 20px; /* Adjust margin for spacing */
    max-width: calc(75.33% - 5px); /* Adjusted width */
}

/* Smaller width for bottom text boxes */
.bottom-textboxes .textbox {
    max-width: calc(33.33% - 5px); /* Adjusted width */
}