body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* header {
    background: #333;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #0779e4 3px solid;
}

header h1 {
    text-align: center;
    margin: 0;
} */

.logo {
    max-width: 150px;
    margin-bottom: 10px;
}

section {
    padding: 20px;
    margin: 0 20px;
}

h2 {
    color: #333;
}

form {
    margin-top: 20px;
}

input[type=email] {
    padding: 10px;
    margin-right: 10px;
    width: calc(100% - 120px);
    border: 1px solid #ddd;
}

button[type=submit] {
    padding: 10px;
    background: #0779e4;
    color: white;
    border: none;
    cursor: pointer;
}

button[type=submit]:hover {
    background: #0056b3;
}

.social-media {
    text-align: center;
    margin: 20px 0;
}

.social-media a {
    color: #333;
    text-decoration: none;
    margin: 0 10px;
}

.social-media a:hover {
    color: #0779e4;
}

#gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

#gallery .photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

#gallery .photos img {
    margin: 10px;
    width: calc(33% - 20px);
    height: auto;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
} */

@media (max-width: 768px) {
    #gallery .photos img {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .social-media a {
        display: block;
        margin: 10px 0;
    }

    #gallery .photos img {
        width: calc(100% - 20px);
    }
}
