* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: black;
    color: #28282B;
}

body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-weight: 200;
    font-size: 4rem;
    text-align: center;
    font-style: italic;
    transform: rotate(180deg);
}

p {
    width: 50%;
    font-size: 2rem;
    padding: 20px;
    filter: blur(4px);
    transition: filter 0.3s ease-in-out;
}
p:hover {
    filter: blur(0px);
    transition: filter 0.3s ease;
}

div {
    color: blue;
}

main {
    outline: 1px solid white;
    outline-offset: -2px;
}

span {
    margin-top: 100px;
    margin-bottom: 50px;
    color: white;
    font-style: italic;
}

section {
    width: 50vw;
    margin: 0 auto;
    font-size: 1rem;
    display: flex;
    gap: 25px;
    z-index: 1;
    margin-bottom: 25px;
}

/*smaller screen body widths */
@media (max-width: 900px) {
    main {
        width: 90vw;
    }
    .popover-content {
        max-width: 80vw;
    }
}