

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


header,
.hero,
.section,
.form-section,
footer {
  outline: 4px solid red;
}


nav {
  outline: 3px solid orange;
}

nav ul {
  outline: 2px dashed yellow;
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 10px;
}

nav li {
  outline: 1px dotted white;
}


.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
}

.hero div {
  outline: 3px solid blue;
  text-align: center;
}

.hero h1 {
  outline: 2px dashed pink;
}

button {
  outline: 2px dashed pink;
}


.section {
  display: flex;
  padding: 40px;
  gap: 20px;
}

.section div {
  outline: 3px solid green;
  flex: 1;
}

.section img {
  outline: 3px solid cyan;
  width: 50%;
}


.form-section {
  display: flex;
  padding: 40px;
  gap: 20px;
}

form {
  outline: 3px solid purple;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

input,
textarea {
  outline: 2px dashed lightblue;
}

.form-section img {
  outline: 3px solid cyan;
  width: 50%;
}


footer {
  padding: 20px;
  text-align: center;
}

footer p {
  outline: 2px dotted white;
}

header {
    background-color: #ff5a3c;
    
}
body {
  background: #ff7a5c;
  color: white;
}

.hero {
  background-image: url(imgs/image%201.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 60vh;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  position: relative;
    
}

.signup-hero {
  background-image: url('imgs/image%206.png');
  background-size: cover;
  background-position: center;
}

footer {
  background-image: url(imgs/image%203.png);
}