body {
    background-color: #471b7c;
    color: white;
    font-family: 'Arial', sans-serif;
    justify-content: center;
    height: 50rem;
    text-align: center;
    }
    header {
        background: #20063f;
        color: #ffffff;
        padding: 10px 0;
        text-align: center;  
        border-radius: 1rem;
    }
    #logo {
        width: min(100%, 7.5rem);
        background-color: #ffffff;
        margin-inline: auto;
    }
    ul {
        list-style-type: none;
        padding: 0;
    }
    div {
        background-color: #20063f;
        border-radius: 1rem;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    nav {
        margin: 20px 0;
        border-radius: 1rem;
    }
    nav a:hover {
        background: #ffffff;
    }
    nav a {
        text-decoration:none;
        margin: 0 15px;
        padding: 10px 15px;
        border-radius: 5px;
    }
    nav li {
        color: #ffffff;
    }
    h1 h3 {
    font-size: 2em;
    margin-bottom: 0.5em;
    text-align: center;
    }
    h2 {
        font-size: 2em;
        margin-bottom: 0.5em;
        text-align: center;
    }
    a {
        color: #d953ed;
    }
    p {
    font-size: 1em;
    max-width: 100%;
    text-align: center;
    }
    footer {
        text-align: center;
        padding: 1rem;
        background: #d953ed;
        color: #000000;
        position:absolute;
        margin-bottom: 0.5rem;
        width: auto;
        line-height: 1;
        border-radius: 1rem;
    }