body, html {
   margin: 0;
   padding: 0;
   font-family: "DM Serif Text", serif;  
}

#navbar {
   height: 50px;
   padding: 10px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background-color: black;
}

#navbar_left {
   display: flex;
   align-items: center;
   color: white;
   font-family: "DM Serif Text", serif;
}

.navbar_text {
   color: white;
   text-decoration: none;
   margin-right: 70px;
   padding: 10px;
}

.navbar_text:hover {
   background-color: rgb(33, 33, 182);
   padding: 10px;
}

#active {
   text-decoration: underline;
}

#main {
   height: 700px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   width: 70%;
   margin-right: auto;
   margin-left: auto;
}

#feedbackform {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   width: 80%;
   margin-top: 10px;
}

#footer {
   height: 150px;
   background-color: black;
   color: white;
}

img {
   margin-left: 20px;
   margin-right: 40px;
}

.formvalue {
   width: 100%;
   padding: 12px 20px;
   margin: 8px 0;
   display: inline-block;
   border: 1px solid #ccc;
   border-radius: 4px;
   box-sizing: border-box;
}

#submit {
   width: 95%;
   margin-top: 20px;
   background-color: black;
   color: white;
   padding: 20px;
   cursor: pointer;
   border: none;
}

#submit:hover {
   background-color: rgb(33, 33, 182);
}

#footer {
   height: 100px;
   background-color: black;
   color: white;
   padding: 50px;
   padding-left: 100px;
}