html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  height: 100%;
}

/* * {
    box-sizing: border-box;
} */

:root {
    --pink: #EB587C;
}

body {
    background: #F8ECEF;
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(248, 236, 239, 1) 100%) no-repeat;
    background-attachment: fixed;
    color: #3C3C3C;
    font-family: stolzl, sans-serif;
    height: 100%;
    margin: 0;
}

.wrapper {
    margin: auto;
    max-width: 1400px;
    padding: 1.5rem;
}

main {
    display: block;
}

h1 {
    color: var(--pink);
    font-family: snicker, sans-serif;
    font-size: clamp(1.875rem, -1.25rem + 10vw, 3.125rem);
    line-height: 1.15em;
    
}

@media screen and (min-width: 992px) {
    h1 {
        margin: 1.875em 0 .25em;
        max-width: 80%;
    }
}

p {
    line-height: 1.75em;
}

a {
    background-color: transparent;
    color: var(--pink);
    text-decoration: none;
}

a:hover {
    color: #ef849f;
    text-decoration: underline;
}

img {
    border-style: none;
    height: auto;
    max-width: 100%;
}

.content {
    order: 1;
}

@media screen and (max-width: 991px) {
    .logo {
        max-width: 40%;
    }
}

@media screen and (max-width: 768px) and (orientation: portrait) {
    .bg-img {
        max-height: 30vh;
    }
}

.grid {
    display: grid;
}

@media screen and (min-width: 992px) {
    .logo {
        margin-top: 3rem;
    }

    .grid {
        align-items: center;
        grid-template-columns: auto 58%;
        grid-template-rows: 1fr; 
        column-gap: 20px;
    }

    .content {
        order: 0;
    }
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    list-style: none;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .social-links {
        flex-direction: row;
    }
}

.social-links a {
    background-color: var(--pink);
    border-radius: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: snicker, sans-serif;
    font-size: 1.375rem;
    padding: .875rem 1.25rem;
    text-decoration: none;
}

.social-links a:hover {
    background-color: #ef849f;
}

.social-links a:before {
    content: '';
    display: block;
    height: 34px;
    width: 30px;
}

.sl-insta:before {
    background: url(img/instagram.png) center/100% no-repeat;
}

.sl-linkedin:before {
    background: url(img/linkedin.png) center/100% no-repeat;
}