@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f0f2f5;
    color: #333;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #fff;
    max-width: 800px;
    width: 100%;
    padding: 30px;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3em;
    color: #2c3e50;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 15px;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #555;
}

ul {
    list-style-type: disc;
    padding-left: 40px;
    text-align: left;
    color: #555;
    font-size: 1.1em;
}

li {
    margin-bottom: 10px;
}

nav {
    margin-bottom: 30px;
}

nav a {
    text-decoration: none;
    color: #fff;
    background-color: #3498db;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

nav a:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

footer {
    margin-top: auto;
    padding: 20px 0;
    width: 100%;
    background-color: #3498db;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

@media (max-width: 600px) {
    nav a {
        display: block;
        margin: 10px 0;
    }

    .container {
        padding: 20px;
    }

    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    p, ul {
        font-size: 1em;
    }
}

.image-container {
    max-width: 100%; 
    overflow: hidden; 
}

.image-container img {
    width: 100%; 
    height: auto; 
    display: block; 
}