@font-face {
    
    font-family: spo;
    
    src: url(test.woff2);
  }

.container {
    display: flex;
    height: 100%;
}

.menu {
    display: flex;
    flex-direction: column;
    background: #000000;
    height: 100%;
    align-items: stretch;
    width: 17%;
    padding-top: 20px;
    padding-left: 25px;
}
html,body{
    height: 100%;
    width: 100%;
    margin: auto;
    font-family: spo;
    background: linear-gradient(#202020, #101010); 
}
 .menu-link a {
    color: rgb(218, 218, 218);
    text-decoration: none;

    font-size:15px;
    line-height:25px;

}
.menu-link a:hover {
    color: white;
    

}
.menu-link-active {
    color:white !
}

.menu-link {
    gap: 15px;
    display: flex;
    align-items:center;
    padding-bottom: 15px;
    
}
.logo-area {
    display: flex;
    
    height: 50px;
    align-items: center ;
    margin-bottom: 30px
}
.logo{
    
    height: 40px;
    width: 40px;
    margin-right: 5px;
    
}
h2{
    color: white;
    font-size: 24px;
}
.linkIcon{
    height: 25px;
    width: 25px;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
    
}
.linkIcon:hover{
    opacity: 0.5;
}
.second-column{
    width: 83%;
    height: 100%;
    background: linear-gradient(#202020, #101010);
}
.header-area{
    background-color: #101010;
    width: 100%;
    height: 65px;
}
.header-sections{
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    
}
.next-back-buttons{
    padding-left:10px;
    padding-top: 20px;
    display: flex;
    gap: 20px
}
.auth-buttons{
    display: flex;
    gap: 10px;
    align-items: center;
}
.btn{
    cursor: pointer;
}
.btn-sign{
    margin-top: 10px;
    background-color: white;
    border-radius: 25px;
    font-size: 15px;
    padding: 10px;
    padding-left: 25px;
    padding-right: 25px;
    font-weight: 600;
    font-family: spo;
    border: none;

}
.btn-register{
    font-family: spo;
    margin-top: 10px;
    font-size: 17px;
    background: none;
    color: #A7A7A7;
    border: none;
}
.playlist-main-title{
    margin-left: 30px;
}
.playlists{
    display: flex;
    gap: 25px;
    margin-top: 30px;
    margin-left: 30px;
    flex-wrap: wrap;
}
.card{
    cursor: pointer;
    background-color:#181818;
    width: 210px;
    height:300px;
    -webkit-box-shadow: 0px 0px 24px 10px rgba(0,0,0,0.61);
-moz-box-shadow: 0px 0px 24px 10px rgba(0,0,0,0.61);
box-shadow: 0px 0px 24px 10px rgba(0,0,0,0.61);
    text-align: center;
    padding: 8px;
    padding-top: 15px;
}
.card-image{
    
    width: 185px;
    height: 185px;
    
    border-radius: 5px;
}
.playlist-title{
    color: white;
    padding-left: 13px;
    padding-top: 15px;
    text-align: left;
    font-weight: 600;
    font-size: calc(1rem + .10vw);
}
.playlist-exp{
    padding-top: 5px;
    padding-left: 13px;
    padding-right: 13px;
    text-align: left;
    color: #A7A7A7;
    font-size: 15px;
}
.footer-bar{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    background-image: -webkit-gradient(linear,left top,right top,from(#af2896),to(#509bf5));
    background-image: linear-gradient(90deg,#af2896,#509bf5);
}
.test-div{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.footer-text{
    padding-top: 12px;
    padding-bottom: 8px;
    padding-left: 40px;
    color: white;
    
}
.footer-first-row{
    font-size: 13px;
    letter-spacing: 1px;
}
.footer-second-row{
    font-size: 15
}
.btn-footer{
    margin-right: 20px;
    margin-top: 10px;
    padding-top: 13px;
    padding-bottom: 13px;
}