*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  header {
    background-color: blueviolet;
    margin: 0;
    padding: 0;
    width: 100%;
  }

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}
body {
    background-color: #d9a7ff;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 18px;
    padding: 0px;
    margin: 0;
    color: rgb(201, 62, 201);
}

video {
    width: 100%;
}

form {
    padding:5px;
    border: aliceblue;
    border-radius: 5px;
    background-color: blueviolet;
    width: 260px;

    position: relative;
    margin: auto;
    /*center form*/
    
}

label{
   text-align: center;
   margin-left: 25px;
}

#send{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: blueviolet;
background-color: rgb(255, 0, 191);
cursor: pointer;
border: 2px solid blueviolet;
}

#send:hover {
background-color: blueviolet;
color: rgb(255, 0, 191);
}

input, textarea, select {
    display: block;
    margin-bottom: 10px;
    width: 200px;
    padding: 2px;
    margin-left: 25px;
    border:#d9a7ff , dashed;
    border-radius: 10px;
}

.audio-container {
    display: flex; justify-content: center; align-items: center; height: 100px;
}


     ul {
         list-style-type: none;
         margin: 0;
         padding: 0;
     }

     nav {

    text-align: center;
    display: block;
    margin-bottom: 10px;
    margin-top: 25px;
     }

     nav ul li {
        
        display: inline-block;
        margin-right: 15px;
      }    

    nav ul li a {
   text-align: center;
   font-size: xx-large;
   font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
   color: rgb(255, 0, 191);
   padding: 10px;
   text-decoration: none;
   background-color: blueviolet;
   border-radius: 15px;
   display: block;
   }

li a:hover,
li a:focus {
  background-color: rgb(255, 0, 191);
  color: blueviolet;
  rotate: 10deg;
}