body {
    margin: 0;
    font-family: 'Segoe UI';
    background-color: #548999;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(100vh - 15rem);
}

.banner-container {
    display: flex;
    justify-content: center;
    background-color: #e6eff6;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 3px 2px 8px -1px rgba(0,0,0,0.45);
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    
}

.about-modal {
    background-color: #e6eff6;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 4rem;
    box-shadow: 3px 2px 8px -1px rgba(0,0,0,0.45);
    margin-bottom: 4rem;
    margin-left: 1rem;
    margin-right: 1rem;
}

.about-modal h1 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 500;
    
}

.about-modal ul {
    max-width: 50rem;
}

.about-modal ul li {
    font-size: large;
    margin-bottom: 1rem;
}

.about-pdf-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about-pdf-container p {
    font-size: large;
}

.about-pdf-container a {
    text-decoration: none;
    padding: 1rem;
    background-color: #89b4c4;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: large;
    transition: background-color ease-in-out 200ms;
}

.about-pdf-container a:hover {
    cursor: pointer;
    background-color: #9ecedf;
}

/* Responsive Design */
@media only screen and (max-height: 860px) {
    .about-content {
        height: auto;
    }
}

@media only screen and (max-width: 430px) {
    .about-modal h1 {
        font-size: 2rem;
    }

    .about-modal ul li {
        font-size: 1.2rem;
    }
}
/* End of Responsive Design */