@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to top, #eaeaea 0%, #eaeaeacf 50%), url('./banner.jpg') no-repeat center/cover fixed;
    color: #333;
}

header {
    background: linear-gradient(0deg, #2ab4a2 0%, rgba(255, 255, 255, 0.749) 100%);
    border-bottom: 2px solid rgb(23, 89, 104);
    text-align: center;
    color: #333;
    padding: 10px;
    font-size: 1rem;
}

article {
    max-width: 900px;
    margin: auto;
    padding: 0 20px 40px;
    color: #333;
}

h1 {
    text-align: center;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #fff;
    color: #464646;
    font-size: 2rem;
}

img {
    max-width: 100%;
    height: auto;
}

.menu-list {
    display: flex;
    list-style-type: none;
    justify-content: space-evenly;
    padding: 10px 100px;
    margin: 0;
    background: rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgb(23, 89, 104);
}

.menu-list li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    transition: background-color .3s, color .3s;
}

.menu-list li a:hover {
    background-color: #2ab4a2;
    color: #fff;
}

.buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 35px 0;
}

.btn-hover {
    min-width: 220px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-size: 300% 100%;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: all .35s ease;
    text-align: center;
}

.btn-hover:hover {
    transform: scale(1.06);
    background-position: 100% 0;
}

.btn-hover.color-9 {
    background: linear-gradient(0deg, #2ab4a2 0%, rgba(233, 233, 233, 0.749) 100%);
    box-shadow: 0 4px 12px rgba(42, 180, 162, .5);
}

.btn-hover.color-9:hover {
    background: linear-gradient(135deg, #1c8d7f 0%, #2ab4a2 100%);
    transform: translateY(-3px);
    scale: 1.1;
    box-shadow: 0 8px 20px rgba(42, 180, 162, .6);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    overflow: hidden;
    table-layout: fixed;
}

table,
th,
td {
    border: 1px solid #ddd;
}

th,
td {
    padding: 12px;
    text-align: left;
    color: #333;
}

th {
    background-color: rgba(44, 62, 80, 0.9);
    color: #fff;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: rgba(236, 240, 241, 0.8);
}

tr:hover {
    background-color: rgba(52, 152, 219, 0.2);
}

blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.7);
    border-left: 5px solid rgba(44, 62, 80, 0.9);
    font-style: italic;
    color: #333;
    border-radius: 8px;
}

blockquote:hover {
    background-color: rgba(52, 152, 219, 0.2);
}

footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 100%);
    border-top: 2px solid rgb(23, 89, 104);
    text-align: center;
    color: #333;
    padding: 15px;
    font-size: 1rem;
}

@media(max-width:1400px) {
    article {
        max-width: 1100px;
    }
}

@media(max-width:1200px) {
    article {
        max-width: 95%;
    }

    h1 {
        font-size: 1.8rem;
    }

    .menu-list {
        justify-content: space-around;
    }
}

@media(max-width:768px) {
    h1 {
        font-size: 1.6rem;
    }

    .btn-hover {
        padding: 14px 20px;
        font-size: 15px;
    }

    .menu-list {
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 10px;
    }

    .menu-list li {
        margin: 5px;
    }

    article {
        padding: 0 15px 30px;
    }
}

@media(max-width:640px) {
    h1 {
        font-size: 1.5rem;
    }

    .btn-hover {
        width: 90%;
        min-width: unset;
    }

    header img {
        width: 120px;
        height: auto;
    }

    .menu-list {
        flex-direction: row;
        align-items: center;
    }

    .menu-list li {
        margin: 8spx 0;
    }
}

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

    header {
        font-size: .9rem;
        padding: 10px;
    }

    .btn-hover {
        font-size: 14px;
        padding: 12px 18px;
    }

    article {
        padding: 0 10px 25px;
    }

    footer {
        font-size: .9rem;
    }
}