@font-face {
    font-family: Heavitas;
    src: url("./Heavitas.ttf");
}

a {
    text-decoration: none;
}

body {
    background-color: rgb(21, 21, 27);
}

.logo {
    width: 170px;
    object-fit: contain;
    cursor: pointer;
    transition: 0.05s;
}

.logo:hover {
    scale: 105%;
    filter: drop-shadow(1px 2px 30px #76a8ff);
}

.logo:active {
    scale: 100%;
}

.center {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    animation-name: slideUp;
    animation-duration: 0.70s;
}

@keyframes slideUp {
    from {
        opacity: 0%;
        margin-top: 170px;
    }
    to {
        opacity: 100%;
        margin-top: 100px;
    }
}

.tracks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 100px;
    animation-name: slideUp;
    animation-duration: 1s;
}

.cover {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
}

.track-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    background-color: rgb(13, 13, 17);
    padding: 12px;
    border-radius: 12px;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.11);
    transition: 0.12s;
    filter: drop-shadow(1px 1px 30px rgba(0, 0, 0, 0.267));
}

.track-card:hover {
    scale: 105%;
    background-color: rgb(36, 36, 46);
}

.track-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

h3 {
    margin: 0;
    font-family: Heavitas;
    color: rgb(241, 242, 255);
    margin-top: 12px;
    text-align: center;
}