/* body */

body {
  background-color: #e6e6e6;
  height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  color: #000;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  padding-top: 32px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.header__logo-icon svg {
  width: 100%;
  path {
    fill: #000;
  }
}

.main {
  max-width: 1000px;
  padding-inline: 16px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (min-width: 768px) {
    .main {
        gap: 60px;
    }
}

/* main section */
.main-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* title */

.main-section__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

/* description */

.main-section__description {
  text-align: center;
}

/* progress bar */

.progress {
  width: 100%;
  max-width: 400px;
  background-color: rgb(220, 220, 220);
  overflow: hidden;
  margin: 20px 0;
}

.progress__bar {
  height: 12px;
  background-color: rgb(239, 155, 0);
  width: 0;
  transition: width 0.3s ease;
}

/* button */

.notify-me__button {
  background-color: rgb(239, 155, 0);
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  margin-top: 28px;
  cursor: pointer;
}

/* social media icon */

.social-media {
  display: flex;
  gap: 48px;
  margin-top: 48px;
}

.social-media svg {
  width: 28px;
  height: 28px;
  path {
    fill: #000;
  }
}

/* footer */

.footer {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .footer {
    gap: 120px;
    flex-direction: row;
    align-items: space-between;
  }
}

/* image logo */

.header__logo-icon img {
  max-width: 600px;
  width: 100%;
  height: auto;
}

/* utilities */

.utility-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.utility-montserrat {
  font-family: 'Montserrat', sans-serif;
}
.utility-raleway {
  font-family: 'Raleway', sans-serif;
}