body{
    background-color: black;
    color: white;
    margin: 0;
    font-family: 'Amatic SC', cursive;
    font-size: 28px;
    
}

.invitation{
    margin: 0 auto;
    width: 40%;
    text-align: center;
    background-color: #212224;
    box-shadow: 0 8px 8px -4px grey;


    display: grid;
    grid-template-rows: 1fr 1fr 1fr 0.5fr;
}

h1{
    font-family: 'Great Vibes', cursive;
}

.hero{
    background-color: #b1985a;
    padding: 10px;

}

.couple img{
    width: 100%;
    height: 100%;
}

.text{
    padding: 10px;
    align-items: center;
    display: grid;
    align-items: center;
}

.address{
    background-color: #c8c9ca;
    color: #9b7c2d;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.address_text{
    display: grid;
    align-items: center;
}

.address img{
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 850px){
    .invitation{
        width: 50%;
    }
}

@media screen and (max-width: 650px){
    .invitation{
        width: 60%;
    }
}

@media screen and (max-width: 550px){
    .invitation{
        width: 70%;
    }
}

@media screen and (max-width: 450px){
    .invitation{
        width: 70%;
    }

    body{
        font-size: 18px;
    }
}