body {
    font-family: "Cormorant Garamond", serif;
    padding: 0;
    margin: 0;
    background-color: black;
}

.header {
    width: 100%;
    color: white;
    padding-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav {
    width: 100%;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom, black, rgba(25, 25, 25, 10));
}

nav ul {
    display: flex;
}

li {
    list-style-type: none;
    margin: 0.5rem 1.5rem;
}

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

.hero {
    width: 100%;
    height: 70%;
    background-image: linear-gradient(to top, rgba(51, 51, 51, 0.5), rgba(25, 25, 25, 0.5)), url('../image/hero.jpg');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.gallery {
    display: flex;
    height: 60vh;
    flex-direction: row;
    margin: 0.5rem;
    padding-bottom: 30%;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.column {
    float: left;
    flex: 20%;
    max-width: 25%;
    padding: 0.5rem;
}

/* Grid Columns for Tablet */
@media only screen and (max-width: 768px) {
    .column {
        flex: 50%; /* 2 columns */
        max-width: 50%;
    }
}

/* Grid Columns for Mobile */
@media only screen and (max-width: 540px) {
    .column {
        flex: 100%; /* 1 column */
        max-width: 100%;
    }
}

.column img {
    width: 100%;
    margin: 0.5rem;
}

#wrap{
    min-height: calc(100vh - 10rem);
    position: relative;
    background: black;

}

.footer {
    position: flex;
    align-items: flex-end;
    bottom: 0;
    width: 100%;
    height: 10rem;
    background-color: black;
    color: white;
}

.sns {
    color: white;
    flex-direction: column;
    margin: 0.5rem;
    padding-left: 1%;
    padding-bottom: 1rem;
}

.copy {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 3rem;
}

.cta {
    color: white;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin: 0.5rem;
    padding-left: 1%;
}

.button1 {
    color: white;
    border: 1px solid white;
    padding: 0.2rem 7rem;
    border-radius: 0.4rem;
}

.button2 {
    color: white;
    border: 1px solid white;
    padding: 0.2rem 2rem;
    border-radius: 0.4rem;
}

/* Media Queries for Tablet */
@media only screen and (max-width: 768px) {
    .header {
        padding-top: 1rem;
    }
    nav {
        font-size: 1rem;
    }
    .button1 {
        padding: 0.2rem 4rem;
    }
    .button2 {
        padding: 0.2rem 1.5rem;
    }
}

/* Media Queries for Mobile */
@media only screen and (max-width: 480px) {
    .header {
        padding-top: 1rem;
    }
    nav {
        font-size: 1rem;
    }
    .button1 {
        padding: 0.2rem 4rem;
    }
    .button2 {
        padding: 0.2rem 1.5rem;
    }
}