@font-face {
  src: url(./assets/fonts/Poppins-BoldItalic.ttf);
  font-family: Poppins-BoldItalic;
}
@font-face {
  src: url(./assets/fonts/Poppins-Regular.ttf);
  font-family: Poppins-Regular;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(0, 0%, 94%);
}

.container {
  width: 600px;
  height: 430px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: hsl(0, 0%, 100%);
  border-radius: 20px 20px 120px 20px;
  padding: 20px;
}

.times {
  display: flex;
  justify-content: space-between;
  width: 70%;
}

h1 {
  font-size: 16px;
  color: hsl(0, 1%, 44%);
  font-family: Poppins-Regular;
}

.inputs {
  display: flex;
  justify-content: space-between;
  width: 70%;
}

input {
  font-size: 32px;
  width: 25%;
  border-radius: 3px;
  border: 3px solid hsl(0, 0%, 86%);
}
input:hover {
  border-color: hsl(259, 100%, 65%);
  cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button {
  display: none;
}

.error {
  height: 10px;
  width: 70%;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
.error p {
  text-align: left;
  color: hsl(0, 100%, 67%);
  font-size: 12px;
  font-family: Poppins-Regular;
}

.flex {
  width: 100%;
  display: flex;
  margin: 0;
  justify-content: space-between;
}

img {
  background-color: hsl(259, 100%, 65%);
  padding: 20px;
  border-radius: 50%;
}
img:hover {
  background-color: hsl(0, 0%, 8%);
  cursor: pointer;
}

p {
  font-size: 50px;
  font-family: Poppins-BoldItalic;
}

.line {
  background-color: hsl(0, 0%, 86%);
  height: 2px;
  width: 90%;
  margin-top: 30px;
  border-radius: 50px;
}

.dash {
  color: hsl(259, 100%, 65%);
}

@media (max-width: 560px) {
  .container {
    width: 95vw;
    padding-right: 0px;
  }
  .times {
    width: 100%;
    padding: 0px 20px 0px 0px;
  }
  .line {
    width: 100%;
  }
  img {
    height: 70px;
    position: relative;
    right: 180px;
  }
  img:hover {
    background-color: hsl(259, 100%, 65%);
  }
  .error {
    width: 100%;
    padding: 0px 10px 0px 0px;
    margin: 10px;
  }
  .inputs {
    width: 95%;
  }
}/*# sourceMappingURL=styles.css.map */