/* Basic Styles */
@import url('https://fonts.googleapis.com/css2?family=Underdog&display=swap');

.underdog-regular {
    font-family: "Underdog", system-ui;
    font-weight: 400;
    font-style: normal;
  }

body {
    font-family: serif,sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    padding: 20px 0;
}

header h1 {
    font-size: 2.5rem;
    color: #F02050;
    text-shadow: 2px 2px 10px rgba(240, 32, 80, 0.7);
}

section {
    width: 80%;
    max-width: 800px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px #F02050;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #F02050;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

ul li:before {
   
    margin-right: 5px;
    color: #F02050;
}

a {
    color: #F02050;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin: 20px 0;
    font-size: 0.9rem;
    color: #888;
}
