@font-face {
    font-family: TildaSans; /* Имя шрифта */
    src: url(Assets/ttf/TildaSans-VF.ttf); /* Путь к файлу со шрифтом */
   }

/* font-family: 'Shrikhand', cursive; */

body {
  overflow: overlay;
  scroll-behavior: smooth;
}

@media screen and (max-width: 1090px) {
    .playlistlist {
        grid-template-columns: repeat(2, minmax(140px, 400px)) !important;
    }

}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(1, 1, 1, 0.3);
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}

* {
    margin: 0;
    padding: 0;
    border: 0;
}

img {
    border: 0;
}

.overlay {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 15px;
    transition: 0.3s ease;
    color: white;
    font-family: TildaSans;
    font-weight: 900;
    text-align: center;
    filter: opacity(0);
}

.overlaytext {
    width: min-content;
    padding-left: 80px;
    padding-top: 130px;
}

.overlay:hover {
    filter: opacity(100%);
    backdrop-filter: blur(5px);
}

.top {
    padding: 4.5rem 60px;
    display: grid;
    -webkit-box-pack: center;
    justify-content: center;
    grid-template-columns: [grid-start] repeat(3, minmax(14px, 44px)) [center-start] repeat(6, minmax(14px, 44px)) [center-end] repeat(3, minmax(14px, 44px)) [grid-end];
    gap: 40px 60px;
    background: black;
    align-items: center;
}

.links {
    grid-column: 10 / grid-end;
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-end;
    -webkit-box-align: center;
    align-items: center;
    flex-direction: row;
}

.link {
    display: flex;
    margin-left: 35px;
    font-family: TildaSans;
    font-weight: 700;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    transition: 0.5s ease;
}

.link:hover {
    font-weight: 900;
    letter-spacing: 3px;
}


*, ::before ::after {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    line-height: 1.45;
    text-size-adjust: 100%;
}


.socmenu {
    display: flex;
    position: absolute;
    left: 74%;
    top: 11%;
    z-index: 1;
}


.playlistlist {
    display: grid;
    padding: 4.5rem 60px;
    grid-template-columns: repeat(3, minmax(140px, 400px));
    gap: 60px 10px;
    -webkit-box-pack: center;
    justify-content: center;
    align-content: center;
}

.playlist {
    margin-left: 50px;
    border-right: 1px solid rgb(229, 229, 229);
}

.imgplaylist {
    width: 300px;
    height: 300px;
    display: flex;
    border-radius: 15px;
}

.plname {
    display: flex;
    font-family: TildaSans;
    font-weight: 800; 
    font-size: 30px;
    margin-top: 15px;
}



.pubgrid {
    padding: 3.5rem 60px 0rem 60px;
    display: grid;
    -webkit-box-pack: center;
    justify-content: center;
    grid-template-columns: [grid-start] repeat(3, minmax(14px, 44px)) [center-start] repeat(6, minmax(14px, 44px)) [center-end] repeat(3, minmax(14px, 44px)) [grid-end];
    gap: 40px 60px;
}

.pubheader {
    grid-column: grid-start / grid-end;
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    flex-direction: row;
    color: rgb(0, 0, 0);
    font-size: 5rem;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    letter-spacing: -3px;
    text-align: left;
    font-family: TildaSans;
    font-weight: 900;
}

.end {
    border-top: 1px solid black;
    padding: 30px;
    display: grid;
    -webkit-box-pack: center;
    justify-content: center;
    gap: 40px 60px;
}

.socmenuend {
    margin-top: 10px;
    display: flex;
}

.endtext {
    margin-left: 30px;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    align-items: center;
    font-family: TildaSans;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: -8px;
    color: darkgray;
    text-transform: uppercase;
}

.soc {
    margin-left: 15px;
    filter: opacity(70%);
    transition: 0.5s ease;
}

.soc:hover {
    filter: opacity(100%);
}


