* {
  padding: 0px;
  margin: 0px;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  background-color: rgb(211, 206, 199);
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
  background-color: #2c2b2b;
  height: 150px;
  color: white;
}

.form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  margin: 40px;
  box-sizing: border-box;
  padding: 15px;
  margin-right: 60px;
}

.feedback-input {
  color: #222;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  border-radius: 5px;
  line-height: 22px;
  background-color: white;
  border: 2px solid #2c2b2b;
  transition: all 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  width: 50%;
  box-sizing: border-box;
  resize: vertical;
}

[type="submit"] {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  width: 50%;
  background: #2c2b2b;
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  color: white;
  font-size: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.3s;
  margin-top: -4px;
  font-weight: 700;
}

[type="submit"]:hover {
  background: #585656;
}
#comment {
  height: 150px;
}
[type="file"] {
  margin: 30px;
  border: 1px solid black;
  padding: 30px;
  border-radius: 20px;
}

#guestbook {
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
  align-items: right;
  padding: 20px;
  overflow: hidden;
  width: 100%;
}

.style {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px;
}

.message {
  border-radius: 20px;
  border: 1px solid black;
  padding: 10px;
  margin-bottom: 10px;
  overflow-x: hidden;
}

#button {
  display: flex;
  justify-content: space-evenly;
  margin: 30px;
  margin-left: 50px;
  margin-right: 50px;
  border-radius: 20px;
  border: 1px solid black;
  background-color: white;
  padding: 10px;
  flex-direction:row;
  color: black;
  text-decoration: none;;
}

#button:hover{
  transition: all ease 0.5s;
  background-color: #cdc9c9;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border: 1px solid #000000;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.popup-content {
  position: relative;
}

.close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
