@font-face {
    font-family: bodoni;
    src: url(BodoniModa_72pt-Bold.woff2);
}

@font-face {
    font-family: inconsolata;
    src: url(Inconsolata_SemiCondensed-Light.woff2);
}

body {
    color: darkslateblue;
    font-family: inconsolata;
    font-size: 24pt;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    border-bottom: 0.3px dotted darkslateblue;
    color: inherit;
    transition: 1.3s;
}

a:hover {
    text-decoration: none;
    color: crimson;
    transition: 1.3s;
}

.hgimg {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.titles-grid {
    margin-top: 20vh;
    margin-left: auto;
    margin-right: auto;
    max-width: 80vw;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    padding: 5px;
}

.titles-grid > div {
    border: none;
    padding: 10px;
    font-size: 30px;
    text-align: center;
    align-self: center;
}

.itemTT {
    grid-column: 1 / span 3;
}

.itemAUDIO {
    grid-column: 1 / span 3;
    grid-row: 2;
}

.item1 {
    grid-column: 1 / span 1;
    grid-row: 3;
}

.item2 {
    grid-column: 2 / span 1;
    grid-row: 3;
}

.item3 {
    grid-column: 3 / span 1;
    grid-row: 3;
}

.item4 {
    grid-column: 1 / span 3;
    grid-row: 4;
}

h1 {
    font-family: bodoni;
    font-size: 100pt;
    line-height: 80%;
    margin: 50px;
}

.menu {
    position: fixed;
    top: 15px;
    left: 15px;
    padding: 10px;
}

.volume {
    position: fixed;
    bottom: 15px;
    right: 15px;
    padding: 10px;
}

.progress {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 15px;
    background-color: transparent;
    border-radius: 100%;
}

.progress-bar {
    width: 0;
    height: 100%;
    background-color: crimson;
}

.time {
    position: fixed;
    bottom: 15px;
    left: calc(50% - 75px);
    width: 150px;
    padding: 10px;
}

.contact {
    position: fixed;
    top: 15px;
    right: 15px;
    padding: 10px;
}

.ueLink {
    position: fixed;
    bottom: 15px;
    left: 15px;
}

.slider {
    -webkit-appearance: none;
    width: 120px;
    height: 25px;
    background: transparent;
    outline: 0.3px solid darkslateblue;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: darkslateblue;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: darkslateblue;
    cursor: pointer;
}

#play-pause-button, 
#stop-button {
    width: 100px;
    height: 100px;
    background-color: transparent;
    font-size: 33pt;
    color: crimson;
    filter: none;
    transition: 1.3s;
}

#play-pause-button:hover, 
#stop-button:hover {
    filter: grayscale();
    transition: 1.3s;
}

@media all and (max-width: 1200px) {
    h1 {
        font-size: 60pt;
        margin: 0;
        padding: 0;
    }
    
     .titles-grid {
        margin-top: 25vh;
        max-width: 90vw;
        display: grid;
        grid-template-columns: 1fr 5fr 1fr;
        gap: 5px;
        padding: 5px;
    }
}

@media all and (max-width: 600px) {
    h1 {
        font-size: 45pt;
        margin: 0;
        padding: 0;
    }
    
    .titles-grid {
        margin-top: 12vh;
        max-width: 95vw;
        display: grid;
        grid-template-columns: 1fr 10fr 1fr;
        gap: 5px;
        padding: 5px;
    }
    
    .volume,
    .time {
        display: none;
    }
    
    .menu,
    .contact {
        position: relative;
        left: 15px;

    }
    
}

@media all and (max-width: 500px) {
    h1 {
        font-size: 30pt;
    }   
}