/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Image Styles */
img {
    width: 100%;        /* Makes the image responsive */
    height: auto;       /* Maintains the image aspect ratio */
    margin: 20px 0;     /* Adds space around images */
    border-radius: 5px; /* Optional: Slight rounding of image corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds a light shadow */
}

/* Header */
header {
    background-color: #fff;
    border-bottom: 2px solid #e5e5e5;
    padding: 20px 0;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav a {
    color: #333;
    text-decoration: none;
    margin: 0 15px;
    padding: 8px 15px;
    border: 2px solid transparent;
}

header nav a:hover {
    border-bottom: 2px solid #333;
}

/* Main Section */
.main {
    padding: 40px 0;
    text-align: center;
}

.main h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.main p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    background-color: #555;
}

/* Footer */
footer {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}