html {
    scroll-behavior: smooth;
}

body {
    background-color: black;
    background-image: url("img.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
html, body {
    height: 100%;
    margin: 0;  
    padding: 0;  
}
body::before {
    content: ""; 
    display: block;
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: -1; 
}
.main {
    text-align: center;
}
* {
    color: #ffb9b9;
    font-family: Arial, sans-serif;
}
.logo {
    width: 100px;
    margin: 20px 20px 30px 20px;
    border-radius: 50%;
}
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;

}
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);
}