
/* unifrakturcook-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'UnifrakturCook';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/unifrakturcook-v23-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
         url('../fonts/unifrakturcook-v23-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }


  /* old-standard-tt-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Old Standard TT';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/old-standard-tt-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

html {
    background: url(../img/bg.webp) fixed;
}


html,
body {
    padding: 0;
    margin: 0;
}
body {
    /*background: linear-gradient(to bottom, #1A1A1A, #3E2723); */
    background: transparent;
    font-family: 'Old Standard TT', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
}
h1 {
    font-size: clamp(2em, 5vw, 3em);
    font-family: 'UnifrakturCook', cursive;
    margin-bottom: 30px;
    margin-top: 5px;
    text-shadow: 0 0 10px #C29D60, 0 0 20px #C29D60;
    padding: 10px 0;
}
.content {
    background: linear-gradient(to bottom, #4E342E, #2C1B18);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(224, 192, 151, 0.8);
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
.cover img, .audio-player, .text-container, .disclaimer {
    width: 100%;
    max-width: 600px;
}
.cover img {
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(224, 192, 151, 0.8);
    margin: 20px auto;
}
.audio-player {
    margin-top: 20px;
    background: #3E1D1D;
    border-radius: 10px;
    padding: 10px;
    border: 2px solid #E0C097;
}
audio::-webkit-media-controls-panel {
    background-color: #3E1D1D;
}
audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-volume-slider-container,
audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    filter: invert(100%);
}
.text-container, .disclaimer {
    background: rgba(224, 192, 151, 0.2);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(224, 192, 151, 0.8);
    margin-top: 30px;
    line-height: 1.6;
    transition: all 0.3s ease-in-out;
    text-align: justify;
}
.disclaimer {
    background: rgba(224, 192, 151, 0.4);
    color: #fff;
    padding: 15px;
    font-size: 0.9em;
}
.footer {
    margin-top: 30px;
    padding: 15px;
    color: #fff;
    width: 100%;
    text-align: center;
}
.footer a {
    color: #E0C097;
    text-decoration: none;
    margin: 0 10px;
}
.footer a:hover {
    text-decoration: underline;
}
p {
    margin: 0;
    font-size: 1.2em;
}
@media (max-width: 768px) {
    .content {
        padding: 20px;
    }
    .text-container, .disclaimer {
        padding: 15px;
    }
    .cover img {
        width: 100%;
    }
}