p a{
    color: #ffcc00;
    text-decoration: none;
}

p a:hover{
    color: #153e69
}

@font-face {
    font-family: 'Capriola';
    src: url(../../fonts/Capriola/Capriola-Regular.ttf), format('truetype');
    font-weight: normal;
    font-size: normal;

}

.footer {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    text-align: center;
    color: #2e2e2e;
}

.footer a{
    text-decoration: none;
    color: #2e2e2e;
}

.footer a:hover{
    color: #e97f1c;
}

.social-container {
    padding-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social {
    width: 32px;
    height: 32px;
    padding-bottom: 15px;
}

body {
    margin: 0;
    font-family: 'Capriola', sans-serif;
    background-color: #f5f5f5;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;    
    padding: 10px;
    background-color: #153e69;
    color: white;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

header img {
    height: 50px;
}

.top-button {
    background-color: #246bce;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 40px;
    font-family: 'Capriola', sans-serif;
}

.top-button:hover {
    background-color: #2e2e2e;
}

.middle-button {
    position: center;
    margin-top: 20px;
    background-color: #246bce;
    color: white;
    padding: 10px 25px;
    font-size: 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Capriola', sans-serif;

}

.middle-button:hover {
    background-color: #153e69;
}

section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

#mission {
    background-color: #246bce;
    color: white;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    line-height: 1.5;
}

.scroll-btn {
    margin-top: 20px;
    cursor: pointer;
    background-color: #ffcc00;
    padding: 10px 50px;
    border-radius: 5px;
    border: none;
    color: #153e69;
    font-weight: bold;
    font-size: 24px;
    font-family: 'Capriola', sans-serif;

}
/* Button container to stack buttons vertically */
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers buttons horizontally */
}

/* Adjust button margins to control space between buttons */
.button-container button {
    margin-bottom: 10px; /* Space between stacked buttons */
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding-left: 15px;
    }

    .middle-button {
        position: static;
        margin-top: 20px;
        transform: translateY(0);
        top: auto;
        right: auto;
        font-size: 22px;
        padding: 8px 22px;
    }

    h1 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }

    .top-button{
        padding: 8px 16px;
        font-size: 14px;
    }

    .scroll-btn{
        padding: 8px 45px;
        font-size: 22px;
    }

    section {
        padding: 0 10px;
    }

    header img{
        padding-right:40px;
        padding-bottom: 5px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    p {
        font-size: 14px;
    }

    .top-button, .middle-button, .scroll-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}