/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f9;
    color: #333;
    text-align: center; 
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 60%;
    height: auto;
    border-radius: 10px; 
    display: block; 
    margin: 0 auto; 
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #011020;
    color: #fff;
}

nav .logo img {
    height: 40px;
}

nav .home a {
    margin-left: 1.5rem;
    font-size: 1rem;
    color: #fff;
}

nav .home a:hover {
    text-decoration: underline;
}

span {
    font-weight: bold;
    color: #ff7e67;
}

/* Header Styles */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #011020 0%, #062742 50%, #114574 100%);
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

header h1 {
    font-size: 3rem;
    font-weight: bold;
}

header p {
    font-size: 1.25rem;
    margin: 1rem 0;
}

header button {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #ff7e67;
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

header button:hover {
    background: #ff644f;
}

/* Main Content Styles */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.website-information .information,
.image-information {
    margin-bottom: 2rem;
}

/* Sections and Articles */
.random-information {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.random-information h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.image-illustration {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 2rem;
}

.image-illustration figure {
    flex: 0 1 auto; 
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: #f4f4f9; 
    width: 60%; 
    margin: 0 auto; 
}

.image-illustration figure img {
    transition: transform 0.3s ease; 
}

.image-illustration figure:hover img {
    transform: scale(1.05); 
}

.image-illustration figcaption {
    padding: 1rem;
    background: #fff;
    text-align: center;
    font-style: italic;
}

/* Quote Section */
.quote-text {
    padding: 2rem;
    background: #011020;
    color: #fff;
    text-align: center;
    margin: 2rem 0;
    border-radius: 10px;
}

/* Sign-Up Section */
.sign-up {
    text-align: center;
    padding: 2rem;
    background: #ff7e67;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sign-up button {
    padding: 0.75rem 1.5rem;
    background: #fff;
    color: #ff7e67;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sign-up button:hover {
    background: #f4f4f9;
    color: #ff644f;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: #011020;
    color: #fff;
}
