#main-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 3840px;
    width: auto;
    flex-direction: column;
    background: url('../images/lamp-4.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    object-fit: cover;
    align-items: stretch;
    height: 100vh;
}

.inner-container {
    margin-left: 20px;
    width: 40%;
    background: rgba(72, 60, 50, 0.8);
    margin: auto;
}

.add-margin-top {
    margin-top: 10px;
}

p {
    background-color: transparent;
    color: var(--linen);
    margin-left:8px;
    margin-right: 8px;
    text-align: justify;
}

h2 {
    color: var(--linen);
    margin-left: 8px;
}

.contact-info p {
    color: var(--fiery-orange);
}


#instagram-link {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--fiery-orange);
    margin-left: 8px;
    margin-right: 8px;
}

a:link {
    text-decoration: none;
}

a:hover {
    color: #f2ba49!important;
}

footer .container {
    align-content: center;
    align-items: center;
    flex-direction: column;
    margin: auto;
    text-align: center;
}

footer p {
    text-align: center;
}

/* Media Queries */
@media (max-width: 768px) {
    .inner-container {
        margin-left: 20px;
        width: 80%;
        background: rgba(72, 60, 50, 0.8);
        margin: auto;
    }
}

