/* styles.css */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
}

nav {
    background-color: #1e1e1e;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    width: 100%;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #03dac6;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

.container {
      max-width: 800px;
      margin: 20px auto;
      padding: 20px;
      background: #1e1e1e;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
    color: #8ab4f8;
    border-bottom: 2px solid #8ab4f8;
    padding-bottom: 5px;
}

h1 {
    font-size: 32px; /* Adjust as needed */
}

h2 {
    font-size: 28px; /* Adjust as needed */
}

h3 {
    font-size: 24px; /* Adjust as needed */
}

p {
    margin-bottom: 1em;
}

a {
    color: #8ab4f8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #e0e0e0;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left; /* Align text to the left */
}

ul li {
    margin-bottom: 10px;
}

.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 1000;
}

.cookie-consent button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
}

.cookie-consent button:hover {
    background-color: #0056b3;
}

.photo {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.heart-img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin: 0 2px;
}
footer {
    text-align: center;
    color: #8ab4f8;
}
footer a {
    color: #8ab4f8;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        padding: 15px 20px;
    }

    p {
        font-size: 14px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px; /* Adjust as needed */
    }

    ul {
        padding-left: 15px;
    }
}
