*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  background-image: url("../img/bg.svg");
  background-size: cover;
  background-repeat: repeat-y;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  position: relative;
  padding: 1.5rem;
}
@media (min-width: 1024px) {
  body {
    padding: 4rem;
  }
}

main {
  padding-bottom: 1.5rem;
  width: 100%;
}
@media (min-width: 1024px) {
  main {
    margin: 0 auto;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none;
  outline: none;
  color: #333;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.je-participe {
  display: inline-block;
  cursor: pointer;
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  text-align: inherit;
  font: inherit;
  border-radius: 0;
  appearance: none;
}

.social {
  display: inline-block;
  cursor: pointer;
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  text-align: inherit;
  font: inherit;
  border-radius: 0;
  appearance: none;
}

.social-container {
  display: flex;
  align-items: flex-center;
  justify-content: flex-end;
  grid-area: social;
}
@media (min-width: 1024px) {
  .social-container {
    transform: scale(1.1);
  }
}

.tulips {
  background-image: url("../img/tulips.webp");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 0;
}

.section {
  position: relative;
  z-index: 1;
}

.grid-main-container {
  display: grid;
  grid-template-areas: "first" "about" "prize";
  grid-template-columns: 1fr;
  grid-template-rows: 100vh auto auto;
  position: relative;
  min-height: 100%;
  max-width: 1200px;
}

.first-screen {
  grid-area: first;
  display: grid;
  grid-template-areas: "social" "infos" "hero" "participation";
  grid-template-columns: 1fr;
  grid-template-rows: 10% 25% 35% 20%;
  position: relative;
  max-height: fit-content;
}

.infos-container {
  grid-area: infos;
  background-image: url("../img/infos.svg");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: right;
}
@media (min-width: 1024px) {
  .infos-container {
    transform: scale(1.1);
    background-position: calc(100% - 8.5rem) center;
  }
}

.hero-container {
  grid-area: hero;
  background-image: url("../img/title.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 90%;
}
@media (min-width: 1024px) {
  .hero-container {
    background-image: url("../img/title-desktop.svg");
    width: 100%;
  }
}

.participation-container {
  grid-area: participation;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.participation-container img {
  z-index: 1;
  padding-left: 1rem;
  align-self: flex-start;
}
@media (min-width: 1024px) {
  .participation-container img {
    margin-left: 7.5rem;
    transform: scale(1.15);
  }
}
@media (min-width: 420px) and (max-width: 1023px) {
  .participation-container img {
    margin-left: 7.5rem;
    transform: scale(1.15);
  }
}
.participation-container .je-participe {
  z-index: 2;
  position: relative;
  top: -1rem;
  align-self: center;
}
@media (min-width: 1024px) {
  .participation-container .je-participe {
    align-self: flex-start;
    margin-left: 7.5rem;
  }
}
@media (min-width: 420px) and (max-width: 1023px) {
  .participation-container .je-participe {
    align-self: flex-start;
    margin-left: 7.5rem;
  }
}

.about {
  grid-area: about;
  margin-bottom: 4rem;
}
.about .subtitle {
  background-image: url("../img/about/about.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  height: 4rem;
}
@media (min-width: 1024px) {
  .about .subtitle {
    height: 5rem;
  }
}
.about .about-expo {
  margin-top: 1.5rem;
}
@media (min-width: 1024px) {
  .about .about-expo {
    transform: scale(1.2);
    display: inline-block;
    width: 45%;
  }
}
.about .about-artist {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
}
.about .about-artist .profiles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .about .about-artist .profiles {
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .about .about-artist {
    margin-top: 1.5rem;
    transform: scale(1.2);
    display: inline-block;
    width: 50%;
  }
}

.prize-section {
  grid-area: prize;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.prize-section .subtitle {
  background-image: url("../img/prize/tirage.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  width: 100%;
  height: 4rem;
}
@media (min-width: 1024px) {
  .prize-section .subtitle {
    height: 5rem;
  }
}
.prize-section .je-participe {
  align-self: flex-end;
}
@media (min-width: 1024px) {
  .prize-section .je-participe {
    transform: scale(1.2);
  }
}

form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  form {
    width: 100%;
    align-items: flex-start;
  }
}
form .name-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
}
form .name-container .input-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  form .name-container .input-wrapper {
    width: 100%;
  }
}
form .name-container .input-wrapper .lname-label {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: -1rem;
  z-index: 2;
  background-image: url("../img/prize/lname-label.svg");
  width: 2.813rem;
  aspect-ratio: 45/31;
}
@media (min-width: 1024px) {
  form .name-container .input-wrapper .lname-label {
    transform: scale(1.2);
  }
}
form .name-container .input-wrapper .fname-label {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: -1rem;
  z-index: 2;
  background-image: url("../img/prize/fname-label.svg");
  width: 3.875rem;
  aspect-ratio: 62/31;
}
@media (min-width: 1024px) {
  form .name-container .input-wrapper .fname-label {
    transform: scale(1.2);
  }
}
form .name-container .input-wrapper .short {
  background: url("../img/prize/short-field.svg") no-repeat center/contain;
  width: 9.313rem;
  height: 2.813rem;
  margin-left: 1rem;
  padding-left: 1rem;
}
@media (min-width: 1024px) {
  form .name-container .input-wrapper .short {
    background: url("../img/prize/short-field-desktop.svg") no-repeat;
    padding-left: 1.5rem;
    width: 27.313rem;
    height: 4.313rem;
  }
}
form .email-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
form .email-wrapper .email-label {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: -1rem;
  z-index: 2;
  background-image: url("../img/prize/email-label.svg");
  width: 3.188rem;
  aspect-ratio: 51/31;
}
@media (min-width: 1024px) {
  form .email-wrapper .email-label {
    transform: scale(1.2);
  }
}
form .email-wrapper .long {
  background: url("../img/prize/long-field.svg") no-repeat center/contain;
  width: 20.188rem;
  height: 2.813rem;
  margin-left: 1rem;
  padding-left: 1rem;
}
@media (min-width: 1024px) {
  form .email-wrapper .long {
    background: url("../img/prize/long-field-desktop.svg") no-repeat;
    padding-left: 1.5rem;
    width: 56.813rem;
    height: 4.313rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

/*# sourceMappingURL=style.css.map */
