body {
    background-color: black;
    color: gainsboro;
    font-family: 'Poppins', sans-serif;
}

section {
    margin: 0 calc(100% / 12);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

section img {
    width: 50%;
    display: block;
    margin: 0 auto;
}

section h1 {
    text-align: center;
    color: #fff;
}

section ul li {
    display: flex;
    align-items: flex-start;
    margin: 0.5rem 0;
    gap: 0.5rem;
}

section a {
    color: lightskyblue;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

section a:hover {
    color: deepskyblue;
}