/* css */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 40px;
  font-family: 'Signika', sans-serif;
  scroll-behavior: smooth;
}
section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#intro {
  color: #FFFFFF;
  background-image: url("../img/1.jpg");
  /* background-size: contain; */
  background-repeat: no-repeat;
  background-size: cover;
  /* background-color: green; */
}
#about{
  /* background-color: #EDE0D4;
  color: #7F5539; */
  background-color: #6e7474;
  color: white;
  /* display: inline-grid; */
}
img.info{
  width: 50vw;
  height: 100%;
  padding-left: 10vw;
}
img{
  width: 50vw;
  height: 100%;
}
.text{
  padding-left: 10vw;
  padding-right: 10vw;
}
#input{
  min-height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
}
form{
  text-align: center;
}
h1{
  text-align: center;
  display: block;
}

label {
  background-color: #7F5539;
  color: white;
  padding: 0.5rem;
  border-radius: 0.3rem;
  cursor: pointer;
  margin-top: 1rem;
  text-align: center;
}
label:hover{
  background-color: #582f0e;
  /* color: black; */
}
#outfit{
  background-color: #EDE0D4;
}
