/* This CSS file styles the HTML document with a classic, elegant theme */
        :root {
            --primary-color: #d4b08c;
            --secondary-color: #45424a;
            --accent-color: #f9f3f0;
        }

       
        body {
            font-family: 'Cormorant Garamond', serif;
            margin: 0;
            padding: 0;
            background-color: var(--accent-color);
            color: var(--secondary-color);
            line-height: 1.6;
        }

        header {
            text-align: center;
            padding: 3rem 0;
            background: linear-gradient(rgba(212, 176, 140, 0.1), rgba(212, 176, 140, 0.3));
        }

        h1 {
            font-size: 3rem;
            margin-bottom: 2rem;
            font-weight: 300;
            letter-spacing: 2px;
            text-align: center;
        }

        h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            font-weight: 300;
            letter-spacing: 2px;
            text-align: center;
        }

        section {
            max-width: 800px;
            margin: 2rem auto;
            padding: 1.5rem;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }


        section div img{
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin-top: 1rem;
        }
        nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            overflow-x: auto;        }

        nav a {
            text-decoration: none;
            color: var(--secondary-color);
            font-size: 1.2rem;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }

        nav a:hover {
            border-bottom: 2px solid var(--primary-color);
        }

        input[type="text"],
        input[type="email"],
        input[type="number"],
        select,
        textarea {
            width: 100%;
            padding: 12px;
            margin: 8px 0;
            border: 1px solid var(--primary-color);
            border-radius: 8px;
            background-color: white;
            font-family: 'Cormorant Garamond', serif;
            font-size: 16px;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 5px rgba(212, 176, 140, 0.3);
        }

        input[type="submit"] {
            background-color: var(--primary-color);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        input[type="submit"]:hover {
            background-color: var(--secondary-color);
        }

        form {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .entry{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
            border: #45424a 1px solid;
            padding: 0% 1rem;
            border-radius: 10px;
        }

        @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&display=swap');

        @media(orientation: portrait) {
        nav {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            justify-content: flex-start;
        }

        }