* {
    margin: 0;
    padding: 0;
    font: inherit;
}

.container {
    max-width: 1224px;
    width: 90%;
    margin: auto;
    padding: 40px 0;
}

.title {
    margin-bottom: 2rem;
}

.photo-gallery {
    display: flex;
    gap: 20px;
}

.column {
    display: flex;
    flex-direction: column;
    width: fit-content;
    gap: 20px;
}

.photo img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.logo-container {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
    width: 100%;
}

.logo {
    max-width: 70%;
    height: auto;
    flex-shrink: 1;
}

.social-link {
    max-width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 1;
}

.social-link svg {
    width: 50px;
    height: 50px;
    flex-shrink: 1;
}

@media(max-width:768px) {
    .photo-gallery {
        flex-direction: column;
    }

    .social-link svg {
        width: 40px;
        height: 40px;
    }
}