body {
    font-family: 'sedansc-regular', sans-serif;
}

body.home {
    margin: 0;
    padding: 0;
    background-image: url('/images/files/background-ship.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    font-family: 'sedansc-regular', sans-serif;
}

p {
    font-family: 'spectral-regular', sans-serif;
}

body.home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 20%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.2) 60%,
        rgba(0, 0, 0, 0.05) 80%,
        rgba(0, 0, 0, 0) 100%
    );
}

.film-box {
  width: 150px;
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-left: 29px;
  margin-bottom: 19px;

}

.film-box a {
    color: black;
    text-decoration: none;
    font-size:1.5rem
}

.gold-box {
    border: 3px solid gold;
    border-radius: 15px;
    padding: 20px;
    background-color: rgba(64, 49, 38, 0.95);
    color: white;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.gold-box h2 {
    margin-top: 0;
    font-size: 2rem;
}

.circle-button {
    width: 20px; 
    height: 20px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 0; 
}

@font-face {
    font-family: 'sedansc-regular';
    src: url('/images/fonts/sedansc-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'spectral-regular';
    src: url('/images/fonts/spectral-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

