body {
    background-color: black;
    background-image: url('teldrassil.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-content {
    text-align: center;
    color: orange;
    font-size: 2.5em;
    font-family: 'Cinzel', serif;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s;
    width: 80%;
}

.center-content:hover {
    transform: scale(1.02);
}

.year {
    font-weight: bold;
}

iframe {
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 560px;
}

@media (max-width: 768px) {
    .center-content {
        font-size: 1.5em;
    }
}
