@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap');

:root {
--very-dark-desaturated-blue: hsl(238, 29%, 16%); /* #### Text */
--soft-red: hsl(14, 88%, 65%);
--soft-violet: hsl(273, 75%, 66%);  /* Background gradient: */
--soft-blue: hsl(240, 73%, 65%);
--very-dark-grayish-blue: hsl(237, 12%, 33%); /* #### Text */
--dark-grayish-blue: hsl(240, 6%, 50%);
--light-grayish-blue: hsl(240, 5%, 91%);  /* #### Dividers */
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1{
  color: var(--very-dark-desaturated-blue);
  margin-top: -135px;
  font-size: 40px;
  text-align: center;
}
body {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-image: linear-gradient(to bottom, hsl(273, 75%, 66%), hsl(240, 73%, 65%));
  overflow-y: hidden;
}

.container {
  width: 310px;
  height: 500px;
  background-color: #fff;
  background-image: url("/images/bg-pattern-mobile.svg");
  background-repeat: no-repeat;
  background-position: 40px 0;
  border-radius: 25px;
}
.container__scroll {
  width: 100%;
  height: 300px;
  overflow-y: scroll;
}
::-webkit-scrollbar { 
  display: none; 
}
.woman{
  height: 50%;
  width: 80%;
  background-image: url("/images/illustration-woman-online-mobile.svg");
  background-repeat: no-repeat;
  position: relative;
  top: -120px;
  left: 30px;
}
.dropDown {
  font-size: 15px;
  font-weight: 400;
  padding: 15px 10px 25px 10px;
  border-bottom: solid 1px var(--light-grayish-blue);
}
.dropDown:hover {
  color: hsl(14, 88%, 65%);
  cursor: pointer;
}
.drop__subtitle {
  display: none;
  margin: 30px 0 0px 0;
  color: var(--dark-grayish-blue);
}
.bold {
  font-weight: 700;
}
.show {
  display: block;
}
.dropDown article {
  font-size: 15px;
}
.dropDown img {
  margin-left: 20px;
  cursor: pointer;
  float: right;
  position: relative;
  top: -12px;
  left: 0;
}
.img-rotate-start {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.img-rotate-end {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.attribution {
  font-size: 11px; 
  text-align: center;
  position: absolute;
  bottom: calc(3vh - 7px);
  color: white;
}
.attribution a {
  color: hsl(34, 100%, 50%);
}

@media (min-width: 1440px) {
  body {
    min-height: 110vh;
  }
  h1{
    margin-top: -235px;
    font-size: 40px;
    position: relative;
    top: -45px;
    left: 145px;
  }
  .container {
    width: 940px;
    height: 550px;
    background-image: url("/images/bg-pattern-desktop.svg");
    background-size: 470px;
    background-position: -63px 10px;
    overflow: hidden;
  }
  .container__scroll {
    width: 40%;
    position: relative;
    top: -5px;
    left: 560px;
  }
  .woman{
    height: 65%;
    width: 55%;
    background-image: url("/images/illustration-woman-online-desktop.svg");
    position: relative;
    top: 60px;
    left: -65px;
  }
  .box {
    height: 125px;
    width: 170px;
    background-image: url(/images/illustration-box-desktop.svg);
    background-repeat: no-repeat;
    position: relative;
    top: -365px;
    left: -460px;
    z-index: 111;
  }

  .attribution {
    font-size: 11px; 
    text-align: center;
    position: absolute;
    bottom: calc(13vh - 7px);
    color: white;
  }
}
/*
- Mobile: 375px
- Desktop: 1440px */
