:root {
    background-color: rgb(206, 250, 206);
    font-family: "Roboto Serif", serif;
    font-weight: 100;
}

body {
    margin: 2rem 4rem;
    border-style: solid;
    border-top: thick solid black;
    border-radius: 3px;
    border-left: hidden;
    border-right: hidden;
    border-bottom: hidden;
}

header {
    font-size: 24px;
    width: 100%;
    height: auto;
    display: flex;
    flex: auto;
    flex-direction: row;
    align-items: center;
    justify-content: left;
}

ul {
    list-style-position: inside;
    padding-left: 0;
  }

.logo {
    height: 3rem;
    filter: brightness(0) invert(0);
    margin: 0 0.25rem;
}

.left-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
}

#title {
    margin-right: 1rem;
}

.container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

.left-child {
    justify-items: left;
}

.right-child {
    justify-self: center;
}

#illusion {
    max-width: 400px;
}

#lead-text {
    margin-top: 0px;
}

a {
      text-decoration: none;
}


@media screen and (max-width: 992px) {
    body {
        margin: 1.75rem 3.5rem;
    }

    #illusion {
        max-width: 80%;
        max-height: 400px;
    }

    .container {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .left-child {
        display: flex;
        flex-direction: column;
    }
    
    .right-child {
        align-self: center;
        display: flex;
        justify-content: center;
    }

    header {
        justify-content: space-between;
    }

    #lead-text {
        margin-top: 1.5rem;
    }
}

@media screen and (max-width: 600px) {
    .logo {
        height: 1.5rem;
    }

    header {
        font-size: unset;
    }
}