@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    background-image: url("https://media1.tenor.com/m/MyJT8iPr0KAAAAAC/dodging-bullet-dr-michael-morbius.gif");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

header,
main,
footer {
    width: 90%;
    max-width: 800px;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    color: white;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

header,
footer {
    background: linear-gradient(90deg, rgba(117, 146, 161, 0.95) 0%, rgba(22, 52, 148, 0.95) 100%);
    backdrop-filter: blur(5px);
}

header {
    margin: 20px auto;
}

main {
    margin: 20px auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
}

footer {
    margin-top: auto;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
}

footer p {
    text-align: center;
    margin: 0;
}

main li,
main p {
    text-align: left;
    line-height: 1.6;
}

a {
    color: #e3eb0e;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

a:hover {
    color: #fff;
    border-bottom: 2px solid #e3eb0e;
}

h1 {
    font-size: 24px;
    transition: transform 0.3s ease-in-out;
    display: inline-block;
}

h1:hover {
    transform: scale(1.15);
    cursor: default;
}

ul {
    list-style-type: "📡 ";
    padding-left: 20px;
}
