* {
    margin: 0px;
    padding: 0px;
}

html, body {
    height: 100%;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 400;
    font-style: normal;
}

header {
    background-color: black;
}

main {
    display: flex;
    flex-direction: column;
    margin-bottom: 530px;
}

footer {
    background-color: black;
}

#HeadLogo {
    height: 100px;
    margin-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

#NavRight {
    margin-right: 25px;
}

.NavHead {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul {
    display: flex;
    gap: 15px;
    border: 4px solid white;
    border-radius:15px;
    padding: 10px;
    padding-left: 40px;
    padding-right: 40px;
    margin-right: 20px;
    list-style-type: none;
}

ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

main {
  text-align: center;
}

main h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  width: 100%;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 12px;
  border: none;
  background: #ddd;
  border-radius: 8px;
}

button {
  display: block;
  width: 200px;
  margin: 30px auto 0;
  padding: 15px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 20px;
  border-radius: 8px;
  cursor: pointer;
}

#FootNav {
    background-color: black;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    place-items: center;
}

#FootIcons {
    color: white;
    list-style: none;
    display: flex;
    gap: 20px;
    margin-right: 1100px;
}

#Line {
    border: 2px solid white;
    border-radius: 2px;
}

#Contact {
    text-decoration: none;
    border: 10px solid white;
    padding: 10px;
}

#FootLogo {
    height: 70px;
    width: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 1150px;
}