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

body {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  background-color: #94ceb9;
}

ul {
  list-style: none;
}

.container {
  width: 85vw;
  margin: 0 auto;
}

.main__body {
  position: relative;
}

.intro__body {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.intro__title {
  font-size: 55px;
}
.intro__upertittle {
  font-size: 65px;
  color: #a60a3d;
  position: relative;
  margin-bottom: 25px;
}
.intro__upertittle::after, .intro__upertittle::before {
  content: "";
  position: absolute;
  height: 6px;
  width: 120px;
  background-color: #a60a3d;
  top: calc(50% - 3px);
}
.intro__upertittle::after {
  left: 130px;
}
.intro__upertittle::before {
  right: 130px;
}
.intro__red-text {
  color: #a60a3d;
  font-size: 55px;
  margin-bottom: 30px;
}
.intro__subtitle {
  font-size: 30px;
  margin-bottom: 55px;
}
.intro__btn {
  margin-bottom: 25px;
}

.btn {
  padding: 15px 35px;
  border-radius: 30px;
  border: none;
  display: inline-block;
  cursor: pointer;
  font-family: sans-serif;
  font-weight: 800;
  font-size: 20px;
  transition: all 0.3s;
}
.btn:hover {
  background-color: lightgray;
  transform: scale(1.05);
  box-shadow: 2px 2px 10px #659d89;
  color: #a60a3d;
}

.overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 9;
  display: none;
}
.overlay.--open {
  display: block;
}

.music, .traffic-lights {
  position: absolute;
  top: 0;
  z-index: 10;
  top: 50%;
  left: 50%;
  transition: transform 0.5s;
  transform: translate(-50%, -200vh);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  overflow: hidden;
}
.music.--open, .traffic-lights.--open {
  transform: translate(-50%, -50%);
}
.music__body, .traffic-lights__body {
  background-color: white;
  width: 100%;
  height: 85vh;
  position: relative;
}
.music__title, .traffic-lights__title {
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  font-size: 35px;
  border-bottom: 1px solid lightgray;
  position: relative;
}

.traffic-lights__item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 71px);
}
.traffic-lights__item {
  width: 250px;
  height: 500px;
  background-color: rgb(46, 46, 46);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.traffic-lights__red, .traffic-lights__yellow, .traffic-lights__green {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.traffic-lights__red {
  background-color: rgba(255, 0, 0, 0.3);
  transition: all 0.6s;
}
.traffic-lights__red.--on {
  background-color: red;
  box-shadow: 0px 0px 20px 10px red;
}
.traffic-lights__yellow {
  background-color: rgba(255, 255, 0, 0.3);
  transition: all 0.6s;
}
.traffic-lights__yellow.--on {
  background-color: yellow;
  box-shadow: 0px 0px 20px 10px yellow;
}
.traffic-lights__green {
  background-color: rgba(0, 128, 0, 0.3);
  transition: all 0.6s;
}
.traffic-lights__green.--on {
  background-color: rgb(0, 201, 0);
  box-shadow: 0px 0px 20px 10px rgb(0, 201, 0);
}

.infoTrafficLights {
  position: absolute;
  bottom: 30px;
  width: 350px;
  text-align: center;
}

.clickTrafficLights, .clickTrafficLightsAuto {
  position: absolute;
  right: 50px;
  bottom: 50px;
  width: 210px;
  height: 100px;
  background-color: #94ceb9;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 30px;
  border-radius: 20px;
  box-shadow: 10px 10px 15px #659d89;
  color: white;
  transition: transform 0.5s, background-color 0.5s;
  cursor: pointer;
}
.clickTrafficLights:hover, .clickTrafficLightsAuto:hover {
  transform: scale(1.05);
  background-color: #659d89;
}

.clickTrafficLightsAuto {
  bottom: 170px;
}

.music__btn-form {
  margin-bottom: 40px;
}
.music__btn-form:hover {
  box-shadow: 2px 2px 10px gray;
}
.music__add {
  position: absolute;
  right: 50px;
  bottom: 50px;
  width: 100px;
  height: 100px;
  background-color: #94ceb9;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 30px;
  border-radius: 20px;
  box-shadow: 10px 10px 15px #659d89;
  color: white;
  transition: transform 0.5s, background-color 0.5s;
  cursor: pointer;
}
.music__add:hover {
  transform: scale(1.05);
  background-color: #659d89;
}
.music__add-form {
  position: absolute;
  border-radius: 20px;
  height: 80%;
  width: 70%;
  bottom: 0;
  background-color: white;
  display: flex;
  flex-direction: column;
  padding: 30px;
  box-shadow: 10px 0px 20px lightgrey;
  align-items: center;
  left: 15%;
  z-index: 10;
  transition: transform 0.3s;
  transform: translateY(100%);
}
.music__add-form.--open {
  transform: translateY(0);
}
.music__input {
  width: 80%;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 18px;
  font-family: "Times New Roman", Times, serif;
  font-weight: 800;
}
.music__label {
  font-size: 25px;
  margin-bottom: 10px;
}
.music__form-info {
  text-align: center;
}
.music__list {
  padding: 35px 55px;
  height: calc(100% - 105px);
  overflow-y: scroll;
}
.music__list::-webkit-scrollbar {
  width: 8px;
}
.music__list::-webkit-scrollbar-thumb {
  background-color: gray;
  border-radius: 5px;
}
.music__list::-webkit-scrollbar-track {
  background-color: white;
}

.close {
  position: absolute;
  right: 30px;
  width: 55px;
  height: 40px;
  cursor: pointer;
}
.close:hover span {
  background-color: #a60a3d;
}
.close span {
  position: absolute;
  left: 10%;
  height: 4px;
  width: 80%;
  background-color: gray;
  transition: background-color 0.4s;
}
.close span:first-of-type {
  top: 0;
  transform: rotateZ(35deg) translateY(14px) translateX(10px);
}
.close span:last-of-type {
  bottom: 2px;
  transform: rotateZ(-35deg) translateY(-14px) translateX(10px);
}

.decorayion {
  text-decoration: line-through;
}

.song {
  display: flex;
  border-radius: 10px;
  border-top: 1px solid lightgray;
  border-bottom: 1px solid lightgray;
  transition: transform 0.4s;
  background-color: white;
}
.song:hover {
  transform: scale(1.05);
}
.song__number {
  font-size: 25px;
  padding-top: 10px;
  padding-right: 10px;
  padding-left: 5px;
}
.song__info {
  display: flex;
  flex-direction: column;
}
.song__img {
  position: relative;
  width: 120px;
  border-radius: 10px;
}
.song__name {
  padding-top: 5px;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}
.song__group {
  font-size: 20px;
  margin-bottom: 5px;
}
.song__time {
  color: gray;
}
.song__wrapper {
  position: relative;
  transition: all 0.5s;
  margin-right: 30px;
}
.song__wrapper.--pause::after {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.3019607843);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
}
.song__wrapper.--pause::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  background: url(../img/pause.png);
  background-size: cover;
  top: 30px;
  left: 30px;
  z-index: 2;
}
.song__wrapper.--play::after {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.3019607843);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
}
.song__wrapper.--play::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  background: url(../img/play.png);
  background-size: cover;
  top: 30px;
  left: 30px;
  z-index: 2;
}/*# sourceMappingURL=index.css.map */