

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html * {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    min-height: 100vh;
    background-color: #034747;
    color: #b38b6b;
}

.container {
    display: flex;
    flex-direction: row;
    gap: 0;
    height: 100vh;
    flex-basis: auto;
    width: 100%;
}

.col {
    flex: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    padding-inline: 4rem;
}

#contact {
    flex-direction: column;
    gap: 1rem;
    box-shadow: 30px 0px 60px #000;
    z-index: 1;
}

#contact img {
    width: 90%;
    height: auto;
    min-width: 200px;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

#contact ul {
    padding-left: 1rem
    list-style: none;
}

#contact ul li {
    margin-bottom: 0.5rem;
}

#banner {
    background-image: url("bride-1.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items:center;
}

.icon {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
    color: #b38b6b;
    fill: currentColor;
}

.inline-content {
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: left;
    align-items: top;
}

h1 {
    font-size: 4rem;
    padding: 3rem;
}

a {
    color: #b38b6b;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

a:hover {
    color: #fff;
}

@media screen and (max-width: 650px) {
    .container {
        flex-direction: column;
    }
    .col {
        padding: 2rem;
        width: unset;
    }
    #contact {
        align-items: center;
        text-align: center
    }

}