.pink {
    background-color: #FFCACC;
}

.purple {
    background-color: #DBC4F0;
}

.green {
    background-color: #AED8CC;
}

.white {
    background-color: #FAF3F0;
}

.yellow {
    background-color: #ECCDB4;
}

body {
    background: rgb(255,202,204);
    background: radial-gradient(circle, rgba(255,202,204,1) 68%, rgba(219,196,240,1) 100%); 
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.button-color {
    background-color: black;
}

    @media (min-width:319px) and (max-width: 480px) {
        img {
            width: 300px;
            height: 200px;
            padding: 0;
        }
      }
  
      @media (min-width:481px) and (max-width: 768px) {
        img {
            width: 450px;
            height: 300px;
        }
      }

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}