:root {
    --pinkneutral: #EDC7B7; 
    --light: #EEE2DC;
    --grey: #BAB2b5; 
    --blue : #123C69;
    --wine: #AC3B61;
    --mont: 'Montserrat', cursive;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    position: relative;
}

header {
    font-family: var(--mont);
    font-size: 50px;
    padding: 40px;
    text-align: center;
    color: #fff;
}

body {
    font-family: var(--mont);
    font-size: 20px;
    background-image: linear-gradient(var(--wine) 48%, var(--pinkneutral) 50%, var(--wine));
    color: #fff; 
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: flex-start;
}

h1 {
    user-select: none;
    margin-bottom: 30px;
}


/* Styling Images */
.images-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
}

.images-container img {
    margin-left: 5px;
    margin-right: 5px;
    width: 300px;
    height: 370px;
}

.img {
    transition: 
    transform 750ms cubic-bezier(.5, 0, .5, 1),
    opacity 250ms linear;
    opacity: .4;
}

.img:focus {
    position: relative;
}

.img:hover,
.img:focus {
    transform: scale(1.056);
    opacity: .75;
}

/* Text stylzing */

.centered {
    position: absolute;
    font-size: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }

/* Styling button */

.button {
    margin-top: 50px;
    border-radius: 4px;
    background-image: radial-gradient(circle, rgba(238,226,220,1) 100%, rgb(206, 121, 158) 0%);
    border: none;
    outline: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 25px;
    padding: 15px 30px;
    transition: all 0.5s;
    cursor: pointer;
  }
  
  .button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .button span:after {
    content: '\1F374';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .button:hover span {
    padding-right: 25px;
    color: var(--blue);
  }
  
  .button:hover span:after {
    opacity: 1;
    right: 0;
  }

*{
    color: #fff;
    text-shadow: 1px 1px 2px black, 0 0 25px gray, 0 0 5px darkgreen;
}
