*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    overflow:hidden;
    background:#000;
}

.background{
    position: fixed;
    inset: 0;
    background-image: url("aenfildddd.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoom 25s ease-in-out infinite alternate;
}
.background::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.75));
}

@keyframes zoom{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.15);
    }
}

.overlay{
    position:relative;
    z-index:2;
    width:100vw;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.card{
    width:420px;
    padding:40px;
    border-radius:25px;
    background:rgba(15,15,15,.7);
    backdrop-filter:blur(18px);
    text-align:center;
    box-shadow:0 0 70px rgba(255,0,0,.45);
}

.profile{
    width:180px;
    height:180px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #ff2b55;
    box-shadow:0 0 35px #ff2b55;
}

h1{
    color:white;
    margin-top:20px;
    font-size:52px;
}

p{
    color:#ddd;
    margin-top:8px;
    font-size:24px;
}

.buttons a{
    display:block;
    margin-top:30px;
    padding:18px;
    border-radius:15px;
    background:#ff0050;
    color:white;
    font-size:24px;
    font-weight:bold;
    text-decoration:none;
    transition:.3s;
}

.buttons a:hover{
    transform:scale(1.05);
    background:#ff2b6d;
}
#enter-screen{
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    transition: opacity .5s;
}

#enter-screen h1{
    color: white;
    font-size: 60px;
    letter-spacing: 3px;
}
