/*CSS Document used for the Web Project 1 assignment
Author: Lydia Cudini
Course: ITWP1000
File: stylesforproject.CSS
*/

body{
    background-color:rgb(207, 207, 141);
    color:rgb(75, 60, 14);
    font-family: Arial, sans-serif;
    margin: 10px;
    }
.brown-line{
    border: none;
    height: 2px;
    background-color:rgb(73, 58, 12);
}
    .category {
        display: flex;
        align-items: flex-start;
        margin-bottom: 30px;
        background-color:rgb(236, 236, 171);
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      }
      .category img {
        width: 200px;
        height: auto;
        margin-right: 20px;
        border-radius: 8px;
        object-fit: cover;
      }
      .category h2 {
        margin-top: 0;
      }

      .vote-section {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
      }
      
      .vote-section img {
        width: 300px;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      }
      
      .vote-section label {
        font-size: 1rem;
        margin-top: 10px;
        display: block;
      }
      
      form h3 {
        margin-top: 40px;
        font-size: 1.5rem;
        color: #333;
      }

      .form-wrapper {
        display: flex;
        justify-content: center;
        padding: 40px 20px;
      }
      
      form {
      
        max-width: 800px;
        width: 100%;
      }
      .gallery-entry {
        display: flex;
        align-items: flex-start;
        margin: 20px 0;
        gap: 20px;
      }
      
      .gallery-entry img {
        width: 300px;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
      }
      
      .gallery-entry div {
        max-width: 600px;
      }
    header{
        text-align:center;
    }

    h1{
        font-size: 2.5em;
    }


    nav{text-align:center;
     }

     h2{text-align:center;
        font-size: 1.5em;
    }

    footer{
        text-align:center;
    }


    