html {
    height: 100%;
    box-sizing: border-box;
  }
  
  * {
    box-sizing: inherit;
  }

body {
    position: relative;
    margin: 0;
    padding-bottom: 8rem;
    min-height: 100%;
    background-color:rgb(116, 178, 230)
    color: #000;
}

.wrapper {
    max-width: 1000px;
    height: auto;
    padding: 0px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #000;
    overflow: hidden;
}

.bannerImage {
    padding-top: 0px;
    background-color: #6a6374;
}

    /* First Row styling */

h1 {
    color: #0b3770;
    font-family: 'Playfair Display', serif;
    padding-top: 10px;
    text-align: center;
    font-weight: bold;
}

#img-giphy {
    padding-top: 25px;
    text-align: center;
}

    /* Second Row styling */

#buttonGroup {
    padding: 25px;
}
            
.feeling {
    text-transform: capitalize; /* force new buttons to be same style as original buttons */
}

button {
    color:rgb(36, 87, 121);
    font-weight: 500;
    font-size: 20px;
    padding: 5px;
    background-color: #e48569;
    border-radius: 8px;
    width: 150px;
}

button:hover {
    background-color: #1c65cc;
    color:#e48569;
}

    /* Third Row styling */

.arrange {
    float: left;
    padding: 15px;
    text-align: center;
}

.gif {
    max-width: 100%;
}

.giphyBorder {
    border: 4px solid #7df3e9;
    border-radius: 6px;
}

p {
    margin: 0em;
}

.rate {
    color: #ee9c59;
    font-family: 'Lato', sans-serif;
    padding-bottom: 15px;
    text-align: center;
}

.title {
    text-transform: capitalize;
    color: #ee9c59;
    padding-top: 15px;
    text-align: center;
}

label {
    color: #ee9c59;
    font-weight: 500;
    font-size: 20px;
}

.submit {
    color: rgb(24, 54, 63);
    background-color: #e48569;
}

  

    /* Footer styling */

footer {
    position: absolute;
    padding-top: 5px;
    border-top: 4px solid #f7882f;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height:5%;
    background-color: #4abdac;
    opacity: 0.8;
    font-size: 18px;
    text-align: center;
    padding-bottom: 1rem;
}

    

