body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.main-content {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}

.left-container {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.left-container p {
    margin: 10px 0;
    font-size: 1rem;
}

.left-container a {
    color: #1e90ff;
    text-decoration: none;
    padding: 0px 0px 5px 0px;
}

.left-container a:hover {
    text-decoration: underline;
}

.left-container img {
    max-width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.left-container img:hover {
    transform: scale(1.05);
}

.container {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.container img {
    max-width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.container img:hover {
    transform: scale(1.05);
}

.container a:nth-child(2) img {
    max-width: 33%; /* Make the Amazon image 1/3 the size */
}

a {
    text-decoration: none;
    color: #1e90ff;
    font-size: 1.2rem;
    margin-top: 15px;
    display: inline-block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    z-index: 1000;
}

.cookie-banner button {
    background-color: #1e90ff;
    color: #fff;
    border: none;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.cookie-banner button:hover {
    background-color: #1c7ed6;
}

.cookie-banner a {
    color: #1e90ff;
    text-decoration: underline;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        gap: 10px; /* Adjust gap for smaller screens */
    }

    .left-container,
    .container {
        max-width: 90%; /* Adjust width for better fit */
        margin: 0 auto; /* Center the containers */
    }

    body {
        font-size: 0.9rem; /* Reduce font size for better fit */
    }

    h1 {
        font-size: 3rem; /* Adjust heading size */
    }

    .left-container p,
    .left-container a {
        font-size: 1.5rem; /* Adjust text size in the left container */
    }

    a {
        font-size: 1rem; /* Adjust link font size */
    }
}