body {

    font-family: 'Poppins', sans-serif;
    background-color: #fff4bb;

}

#wrapper {

    width:100%;
    margin: auto;

}

.row {
    
    padding-bottom: 4rem;

}

header {

    text-align: right;

}

ul {

    list-style-type: none;

}

.listStyle {

    display: inline;
    padding: 1rem;
    white-space: nowrap;
    text-align: right;

}

.profText {

    font-size: 2.5rem;
    color: #B64926;

}

h1 {

    font-size: 9rem;
    font-weight: 1000;

}

h1, h4, h3 {

    color:#304F48;

}

.subheader {

    font-size: 4rem;
    
}



/*EXERCISE 6 ANIMATIONS AND TRANSFORMATIONS*/

#polyportrait {
    transition: all 1s ease-in-out;
}
  
#polyportrait:hover {
    transform: scale(1.1);
}
  
@keyframes slide {
    0% {
        left: -100px;
    }
    100% {
        left: 100%;
    }
}
  
.fruitfly {
    width: 100px;
    height: 100px;
    border-radius: 30%;
    padding-left: 3rem;
    background-color: #304F48;
    color:#dcc4d2;
    position: fixed;
    animation: slide 4s ease-in-out infinite;
    z-index: 100;
}



/*LINKS*/

.listStyle {
    display:flexbox;
}
a:link {
    color: #FFB03B;
}
a:visited {
    color: #304F48;
}
a:hover {
    color: #B64926;
}
a:active {
    color: #dcc4d2;
}



/*MEDIA QUERIES*/

@media only screen and (max-width: 1000px) {

    header {
        text-align: center;
    }

}