body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2c3200;
}
header {
    /*background-color: #007e9a;*/
    background-image: linear-gradient(90deg, rgb(0, 122, 85) 0%, #849500 70%);
    color: white;
    padding: 1rem 0;
    text-align: center;
}
header h1 {
    margin: 0;
}
nav {
    background-color: #242424;
    overflow: hidden;
}
nav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
nav a:hover {
    background-color: #002c42;
    color: black;
}
.container {
    color: white;
    padding: 2rem;
    padding-bottom: 8rem;
    max-width: 800px; /* Adjust max-width as needed */
    margin: 0 auto; /* Center the container */
}
.section {
    margin-bottom: 2rem;
}
.section h2 {
    color: #333;
}
footer {
    background-color: #242424;
    color: white;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

.contact-form label {
    display: block;
    margin: 0.5rem 0 0.2rem;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
}
.contact-form button {
    background-color: #333;
    color: white;
    padding: 0.5rem 2rem;
    border: none;
    cursor: pointer;
}
.contact-form button:hover {
    background-color: #555;
}

.title {
    color: rgb(76, 0, 106); font-weight: bolder; 
    font-size: 250%; 
    font-style: italic;
}

.link-button {
    border-radius: 15%;
    background-image: linear-gradient(90deg, #342a44, #260f34);
    color: white;
    padding: 0.5rem 2rem;
    cursor: pointer;
    
}
.link-button:hover {
    background-image: linear-gradient(90deg, #50406b, #451b5f);
    color: rgb(167, 167, 167);
}

/*Commented out classes*/
/*
p{
    color: azure;
}

form{
    color: azure;
}

h1{
    color: azure;
}

h2{
    color: azure;
}

h3{
    color: azure;
}*/