* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #F5EEDF;
}

h1, h2, h3, h4, h5, h6, p, a {
    text-decoration: none;
    font-family: 'PT Serif', serif;
    color: #333333;
}

.logo {
    margin-top: 5px;
}

.linked {
    color: #d14876;
}

.container {
    width: 92%;
    margin: auto;
    padding: 20px;
}

.adr,
.social {
    display: flex;
    align-items: center;
    font-family: 'Enriqueta', serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 30px;
    gap: 15px;
}

.adr {
    float: left;
}

.social {
    float: right;
}

.adrtxt,
.socialtxt,
.footeranimation {
    position: relative;
    cursor: pointer;
}

.adrtxt::before,
.socialtxt::before,
.footeranimation::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 0%;
    height: 100%;
    background-image: url("/animation.svg");
    background-repeat: no-repeat;
    background-size: cover;
    transition: width 0.5s ease;
}


.adrtxt:hover::before,
.socialtxt:hover::before,
.footeranimation:hover::before {
    width: 65%;
}

.instagram-circle {
    width: 35px;
    height: 35px;
    background-color: #EC4613;
    border: 1px solid black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease;
}

.instagram-circle:hover {
    background-color: black;
}

.instagram-circle svg {
    width: 60%;
    height: 60%;
    fill: black;
}

.main-section {
    margin-top: 80px;
}

header {
    display: flex;
    margin-top: 60px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 20px;
}

header .container img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-height: 150px;
}

footer {
    margin: 50px 0 30px;
    font-size: 18px;
}

.footer-contacts {
    display: flex;
}

.footer-right {
    margin-left: auto;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footercredits {
    display: flex;
    margin-top: 20px;
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        justify-content: center;
    }

    header .container img {
        position: static;
        transform: none;
        margin: 10px 0;
    }
}
