/* Global Styling */
* {
    margin: 0;
    padding: 0;
}
html {
    background: #0f3308;
}
body {
    font-family: 'Arial', sans-serif;
    background: #32951c;
    background: linear-gradient(to right, #32951c, #e1bf14);
    min-height: 100vh;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 80%;
    height: fit-content;
    padding: 30px;
    margin-top: 30px;
    background-color: rgb(240, 240, 240, 0.2);
    border-radius: 10px;
}
.container.last {
    margin-bottom: 30px;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background: #0f3308;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
    z-index: 10;
}
.links {
    list-style-type: none;
}
.nav {
    display: inline;
    padding-right: 40px;
}
#last {
    padding-right: 0;
}
.pages {
    text-decoration: none;
    color: #fff;
}
.pages:hover {
    text-decoration: underline;
}

h1 {
    margin-bottom: 20px;
    font-size: 2rem;
    letter-spacing: 1px;
    font-weight: bold;
    color: #000;
}
h2 {
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: #000;
}

/* Mobile-specific Styles */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        width: 75%;
        padding: 15px;
        margin-top: 20px;
    }
    h1 {
        font-size: 1.6rem;
    }
    .nav {
        padding-right: 22px;
    }
    #last {
        padding-right: 0;
    }
}