@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');


html {
    box-sizing: border-box;
    background-color: #000;
    font-size: 62.5%; /*1 rem = 10px; 10px/16px = 62.5%*/
    overflow-x: hidden;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.dp-accra img {
    margin: 4.8rem 0 4.8rem 0;
    width: 35%;
    height: auto;
}

.dp-accra div {
    display: block;
    text-align: center;
}

section {
    margin: 0 28rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
}

h1 {
    font-size: 1.8rem;
    padding-bottom: 2.4rem;
}

h3 {
    font-size: 1.2rem;  
    padding-bottom: 1.2rem;
}

p {
    font-size: .8rem;
    font-style: italic;
    font-weight: 400;
    padding-bottom: 4rem;
}

span {
    display: block;
    font-size: 1.6rem;
    padding-top: .2rem;
}

a {
  color: inherit; 
  text-decoration: none;
}

.dp-rsvp {
    display: flex;
    justify-content: space-evenly;
}

.dp-rsvp div a img{
    width: 33vw;
    border: 1px solid #fff;
    margin: 0 1.2rem 1.2rem 1.2rem;  
}

.dp-rsvp > div:last-child{
    margin-bottom: 3.2rem;
}

/*---- ANIMATIONS----*/

.fade-in {
    -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
            animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2019-12-21 21:30:4
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*---- MEDIA QUERIES ----*/

/* Big-desktop 1800px */   
    @media only screen and (min-width: 112.5em) {
        html {
            font-size: 120%;
        }
    }

/* Tab-land 1200px */
    @media only screen and (max-width: 75em) { 
        html {
            font-size: 75%; 
        }
        .dp-accra img {
            width: 45%;
        }
        section {
            margin: 0 6.4rem;
        }
        .dp-rsvp {
            flex-direction: column;
            justify-content: center;
        }
        .dp-rsvp div a img {
            width: 60vw;
        }
        .dp-rsvp > div{
            margin-bottom: 1.2rem;
        }
    }

/* Tab-port 900px */
    @media only screen and (max-width: 56.25em) {
        html {
            font-size: 68.75%;
        }
    }

/* Phone 600px */        
    @media only screen and (max-width: 37.5em) { 
        html {
            font-size: 50%;
        }
        .dp-accra img {
            width: 65%;
        }
        .dp-rsvp div a img {
            width: 65vw;
        }
    };