body, html {
    height: 100%;
    margin: 0;
    font-family: "Anton", sans-serif;
    font-weight: 800;
    background: url('background-image.jpg') no-repeat center center fixed;
    background-size: cover; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.centered {
    font-size: 10vw; 
    /*letter-spacing: -0px;*/
    color: white; 
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9); 
    opacity: 0.7;
    /*backdrop-filter: sepia(60%);*/
   
    animation: fadeIn 3s ease-out forwards; 
}

.description {
	font-size: 9vw;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.7; }
}

.contact-link {
    color: white; 
    text-decoration: none;
    font-size: 2.5vw; 
    margin-top: 10px;
    opacity: 0.8;
    transition: color 0.5s ease-in-out; 
}

.contact-link:hover {
    color: #FFA500; 
    text-decoration: underline;
    opacity: 1;
}

.reverse {
    unicode-bidi: bidi-override;
    direction: rtl; 
}

@media (max-width: 600px) {
    .centered {
        font-size: 14vw; 
	opacity: 0.8;
    }
    .contact-link {
        font-size: 5vw; 
	opacity: 0.8;
    }
}
