@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,800;1,800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

.container{
    width: 100%;
    height: 100vh;
    padding-left: 8%;
    padding-right: 8%;
    background-image: url(./images/1.jpg);
    background-position: center;
    background-size: cover; 
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    column-gap: 20px;
}

nav ul li a {
    color: black;
    text-decoration: none;
}

nav ul li a:hover {
    color: white;
}

.row {
    display: flex;
}

h1 {
    color: black;
    font-size: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.gallery {
    width: 80%;
    margin: auto;
    padding: 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.box {
    flex: 1;
}

.box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    padding: 20px 0;
    height: 500px;
    color: white;
}

.contact-text {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-logo img {
    max-height: 50px;
    height: auto;
}

.icons {
    display: flex;
    margin-top: 10px;
}

.icons a {
    margin: 0 10px;
}

.icons img {
    max-height: 30px;
    height: auto;
}
