*{
    padding:0px;
    box-sizing: border-box;
}
#header{
    background-color: rgba(68, 52, 221, 0.704);
    height: 70px;

}
:root {
    --text-color:green;
}
.menu {
    display:flex; 
    justify-content:space-evenly;
}
.menu li{
    display:flex;
    list-style: none;
    }
    .menu li a {
    text-decoration: none;
    color:rgb(181, 207, 33);
    line-height: 50px;
    font-size: 40px;
    }
    .menu li:hover a{
        color:rgb(40, 169, 44);
    }
    .slider{
        background-color: rgb(49, 203, 224);
        height:140vh;
    }
    .content{
        width: 100vw;
        display: block;
    }
    .content h1{
        text-align: center;
        color:bisque
    }
    .content img{
        margin:0 auto;
        display:block;
    }
    .content p{
        color:bisque;
    }
    h1 {
        color: var(--text-color);
    }
    #footer{
        background-color: black;
    }
    .menu-footer li{
        color:bisque;
        text-align: center;
        line-height:40px
    }
    

    .dataitems{
        display: flex;
      justify-content: center;
      gap: 20px; 
      padding: 20px;
    }

    .container {
      max-width: 400px;
      margin: 20px auto;
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    label {
      font-weight: bold;
      display: block;
      margin: 10px 0 5px;
    }
    input, textarea {
      width: 100%;
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    textarea {
      height: 100px;
    }
    button {
      background: #28a745;
      color: white;
      border: none;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 10px;
    }
    button:hover {
      background: #218838;
    }

