html {
    scroll-behavior: smooth;
}

body {
    background-color: black;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

html, body {
    height: 100%;
    margin: 0;  
    padding: 0;  
}

.main {
    text-align: center;
}
* {
    color: #ffb9b9;
    font-family: Arial, sans-serif;
}

nav li{
    display: inline;
    float: right;
    margin: 10px;
    border: 1px solid #5D0818;
    border-radius: 10px;
    padding: 10px;
    background-color: rgba(93, 8, 24, 0.3);

}
@keyframes nav-hover {
    from {background-color: rgba(93, 8, 24, 0.3);
        padding: 10px;
    margin: 10px;}
    to {background-color: rgba(93, 8, 24, 0.6);
        padding: 13px;
    margin: 7px;}
}

nav a {
    text-decoration: none;
}

.none {
    clear: both;
}

li:hover {
    animation: nav-hover 0.5s;
    animation-fill-mode: forwards;
}

footer {
    float: inline-end;
    position: absolute;
    bottom: 0;
    right: 10px;
}   

.main h1 {
    text-align: center;
    font-size: 50px;
    margin-top: 100px;
    text-shadow: 10px 10px 5px #000000;
    display: inline-block;
    padding: 20px 40px;
    border-radius: 40px;

}
.mainh1 {
    text-align: center;
    font-size: 50px;
    margin-top: 70px;
    text-shadow: 10px 10px 5px #000000;
    display: inline-block;
    padding: 20px 40px;
    border-radius: 40px;

}
p {
    font-size: 20px;
    text-align: center;
    padding: 10px;
    border-radius: 25px;
}


.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1); 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 1);
}


#bg {
    position: fixed;     
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  
    z-index: -1;       
    opacity: 0.65;
    transition: all 0.3s ease;
}

.focus_bg {
    filter: blur(10px);
    transform: scale(1.05);
}

.more {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    display: none;
}
