* {
    margin: 0;
    padding: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.background {
    width: 100%;
    height: 100vh;
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    filter: blur(6px);
}
.wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main {
    /* background-color: #F1B570; */
    background: radial-gradient(
    ellipse farthest-corner at 100% 100%,
    rgb(88, 1, 250),
    rgba(247, 168, 21, 0.884) 10%,
    #f5a860e3 30%,
    rgba(2, 6, 250, 0.884)
  );
    min-width: 450px;
    height: 620px;
    border-radius: 30px;
    box-shadow: 20px -20px rgba(40, 25, 175, 0.7);
    position: fixed;
    top: 130px;
    left: 750px;
}
h1 {
    font-size: 28px;
    color: #ffffff;
    font-weight: 500;
    line-height: 28px;
    font-style: normal;
    text-align: center;
    margin-top: 30px;
}
.img {
    padding: 30px 0 30px 0;
    display: flex;
    justify-content: center;
}
.img div {
    width: 250px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}
.img div img {
    display: block;
    width: 100%;
    height: 100%;
}
.name {
    padding: 0 20px 20px 20px;
    text-align: center;
}
.name h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 400;
}
.name p {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
}
.slider {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.time {
    display: flex;
    width: 270px;
    justify-content: space-between;
    margin-top: 5px;
}
.time-two {
    text-align: end;
}
.slider p {
    color: #000000;
    font-size: 16px;
    font-weight: 200;
}
input[type="range"] {
    appearance: none;
    background-color: rgb(255, 255, 255);
    height: 5px;
}
.input_slider {
    width: 60%;
    /* background: linear-gradient(to right, #2e00fd 0%, #0818fa 40%, #120ef8 40%, #0a1afa 100%); */
    border-radius: 8px;
    height: 7px;
    outline: none;
    transition: background 1000ms  #ffffff ease-in;
    appearance: none;
}
.input_slider::-webkit-slider-thumb {
    width: 8px;
    height: 17px;
    border-radius: 10px;
    appearance: none;
    cursor: pointer;
    background: #181818;
  }
.volume {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 20px 0;
}
.volume img {
    width: 15px;
    height: 20px;
    padding: 0 10px;
    color: #ffffff;
    font-size: 15px;
    border-radius: 50%;
    margin: 10px;
}
.input_volume {
    width: 25%;
    /* background: linear-gradient(to right, #2e00fd 0%, #0818fa 40%, #120ef8 40%, #0a1afa 100%); */
    border-radius: 8px;
    height: 7px;
    outline: none;
    transition: background 450ms  #ffffff ease-in;
    appearance: none;
}

.input_volume::-webkit-slider-thumb {
    width: 8px;
    height: 17px;
    border-radius: 10px;
    appearance: none;
    cursor: pointer;
    background: #181818;
  }
.fa_volume_low:hover,
.fa_volume_high:hover {
    cursor: pointer;
}
.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 0 0;
}
.buttons img {
    width: 30px;
    cursor: pointer;
    border-radius: 50%;
}
.buttons .fa_circle_play,
.buttons .fa_circle_pause {
    width: 40px;
    margin: 0 20px;
}
.button_hide {
    display: none;
}



.footer {
    width: 100%;
    height: 10%;
    background: rgba(40, 25, 175, 0.863);
    margin-bottom: 0;
}
.footer__wrapper-bottom {
    display: flex;
    width: 100%;
    height: 20px;
    margin-top: 44px;
    margin-bottom: 44px;
    margin-right: 20px;justify-content: space-between;
}
.footer-bottom-text {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 2px;
    text-decoration: none;
}
.footer-bottom-text-center {
    margin-left: 63px;
}
.footer-bottom-text:hover,
.footer-left-text:hover {
    color: #fdfcfc;
    text-decoration: underline;
    cursor: pointer;
    transition: 0.7s;
}
.footer-bottom-text-right {
    margin-right: 20px;
}
.year {
    color: #ffffff;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 2px;
    margin-left: 20px;
}



.card {
    position: absolute;
    top: -300px;
    left: 600px;
    width: 450px;
    height: 620px;
    position: relative;
    perspective: 1000px;
    display: block;
    transition: 2s;
    
}
.close {
    display: none;
}
.front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 2s;
    backface-visibility: hidden;
    border-radius: 10px;
}
.front {
    background: radial-gradient(
    ellipse farthest-corner at 100% 100%,
    rgb(88, 1, 250),
    rgba(247, 168, 21, 0.884) 10%,
    #f5a860e3 30%,
    rgba(2, 6, 250, 0.884)
  );
}
.back {
   background: radial-gradient(
    ellipse farthest-corner at 100% 100%,
    rgb(88, 1, 250),
    rgba(247, 168, 21, 0.884) 10%,
    #f5a860e3 30%,
    rgba(2, 6, 250, 0.884)
  );
    transform: rotateY(180deg);
}
p {
    display: inline-flex;
    padding: 0;
    flex-direction: column;
    width: 450px;
  color: #fff
}
.card:hover .front {
    transform: rotateY(180deg);
}
.card:hover .back {
    transform: rotateY(360deg);
}
.title {
    color: #ffffff;
    margin-left: 40px;
    font-size: 18px;
    font-weight: 100;
    background-color: #00000000;
    border-color:1px solid #fffefe;
}
.title:hover {
    cursor: pointer;
}
li {
    font-size: 24px;
    color: #ffffff;
}
.finish {
    color: #ffffff;
    font-size: 48px;

}



