/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Header and Footer */
footer {
    position: relative; /* Positions the image relative to the header */
    top: 10vw; /* Distance from the top of the header */
    width: 100%;
    background-color: #004080; /* Navy Blue */
    color: white;
    text-align: center;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
/* Begin Nav */
nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #00c1d4;
}
/* End Of Nav */


/* Main Container */
.container {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

/* Main Content */
.main-content {
    flex: 1;
    margin: 0 20px;
    padding: 20px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

/* Side Articles */
.side-article {
    width: 20%;
    padding: 15px;
    background-color: white;
    border: 1px solid #4cc049;
    border-radius: 8px;
    margin: 0 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0,2.1);
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
}

input[type="text"], input[type="number"] {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

button {
    background-color: #28a745; /* Green */
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.logo {
    position: absolute; /* Positions the image relative to the header */
    top: 10px; /* Distance from the top of the header */
    left: 10px; /* Distance from the left of the header */
    width:125px;
    height:125px;
}


button:hover {
    background-color: #218838; /* Darker Green */
}

/* PayPal Button */
.paypal-button {
    display: block;
    margin: 20px auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .side-article {
        width: 100%;
        margin-bottom: 20px;
    }
    .main-content {
        margin: 0;
    }
}
