* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    background-color: white;
    color: red;
}

body {
    font-family: sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

main {
    width: 90%;
    margin: 5px auto;
    display: flex;
    flex-direction: column;
    border: 2px solid red;
}

main * {
    margin: 15px;
    font-weight: 400;
    font-size: 1.75rem;
    color: black;
    word-break: break-all;
    transition: all 1s ease-in-out;
}

h1 {
    margin-top: 200px;
}
h2 {
    margin-left: 15px;
    margin-top: 0px;
    margin-bottom: 0px;
}

span {
    color: red;
}

hr {
    border: 1px solid red;
}

img {
    filter: invert(1);
}