body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: rgb(24, 0, 82);
    color: white;
    padding-top: 100px;
}

section {
    width: 100%;
    display: flex;
    justify-content: center;
}

header {
    position: fixed;
    background-color: rgba(100, 0, 200, 0.1);
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

a {
    color: rgb(110, 47, 255);
}

a:hover {
    color: rgb(142,124,184);
}

a:active {
    color: rgb(123, 83, 215);
}

h1 {
    font-size: 32px;
    font-weight: 100;
    text-align: center;
}

section .content,
footer .content {
    width: 80vw;
    max-width: 1000px;
    text-align: justify;
    /* background-color: rgba(0, 0, 0, 0.1); */
    padding: 20px 80px;
}

section .content h2,
section .content p,
footer .content h2,
footer .content p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

section .content img {
    width: 100%;
}

footer {
    margin-top: 40px;
    padding-top: 40px;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}