        body {
            background-color: white;
        }

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

        }

        p {
            color: black;
        }

        h2 {
            color: black;
        }

        #tribute-link {
            color: white;
        }

        .recentPosts {
            display: flex;
            justify-content: space-evenly;
            flex-direction: column;
            padding: 1rem 0 0 0;
        }

        #posts {
            display: flex;
            justify-content: space-between;
            margin: 3rem;
        }
        
        #posts p {
            width: 25rem;
            margin: auto;
            text-align: justify;
        }

        #flex-right {
            text-align: center;
            width: 100%;
        }

        #flex-left {
            text-align: center;
            width: 100%;
        }

        #title {
            font-family: 'Abril Fatface', sans-serif;
            color: black;
            text-align: center;
            font-size: 70px;
            background: white;
        }

        #img-div {
            margin-right: auto;
            margin-left: auto;
            text-align: center;
            max-width: 100%;
            background: black;
        }

        #img-caption {
            font-size: 1.3rem;
            color: white;
            text-align: center;
            width: 55%;
            margin-left: auto;
            margin-right: auto;
        }

        #image {
            width:100%;
        }

        #tribute-info {
            text-align: center;
            color: white;
            background: black;
            font-size: 20px;
        }

        #awardTitle {
            text-align: center;
            font-family: 'Abril Fatface', sans-serif;
        }

        #bio {
            background: black;
            text-align: center;
        }

        #biographyinfo {
            color: white;
            font-size: 2.5ch;
            padding: 0 10rem;
        }

        #biography {
            text-align: center; 
            font-family: 'Abril Fatface', sans-serif; 
            font-size: 2rem;
            color: white;
        }

        #moreButton {
            background: white;
            color: black;
            border-radius: 20px;
            padding: 0.5rem;
            border: none;
        }

        #moreButton a:link {
            text-decoration: none;
            color: black;
        }

        @media screen and (max-width:800px) {     
            #posts {
                flex-direction: column;
                padding: 2rem;
                margin: 0;
            }

            #posts p {
                width: 100%;
                margin: auto;
                text-align: justify;
            }

            #biographyinfo {
                color: white;
                font-size: 2ch;
                padding: 0 2rem;
            }

            #img-caption {
                font-size: 1rem;
                color: white;
                text-align: center;
                margin: 0 auto;
                width: 100%;
                padding: 3rem;
            }
        }

        