:root {
    --background-color: #1E1E1E;
    --pink: #F10086;
    --white: #fff;
    --black: #000;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--white);
}

.header {
    text-align: center;
    padding: 200px 20px;
    background-color: var(--background-color);
}

.header .logo {
    margin-bottom: 80px;
}

.header .logo img {
    max-width: 480px;
    width: 100%;
}

.header .social-icons svg {
    fill: var(--pink);
    width: auto;
    height: 75px;
}

.header .social-icons a {
    transition: all .4s ease;
    display: inline-block;
    margin: 0 30px;
}

.header .social-icons a:hover,
.header .social-icons a:focus {
    transform: scale(1.1);
}

.shop {
    text-align: center;
    background-color: var(--white);
    color: var(--black);
    padding: 80px 20px;
}

.footer {
    text-align: center;
    padding: 200px 20px;
    background-color: var(--background-color);
    color: var(--white);
}

.footer-logo {
    margin-bottom: 50px;
}

.footer-logo img {
    max-width: 150px;
}

.footer-text {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-text-icon {
    position: absolute;
    right: 60px;
    bottom: -80px
}

.footer-text-icon svg {
    width: 110px;
    height: auto;
}

.footer-text p {
    font-size: 20px;
}

.contact-icons svg {
    width: 100px;
    height: auto;
}

.contact-icons a {
    transition: all .4s ease;
    display: inline-block;
    margin: 0 30px;
}

.contact-icons a:hover,
.contact-icons a:focus {
    transform: scale(1.1);
}

.shop-btn button {
    border: 2px solid var(--pink);
    color: var(--pink);
    background: var(--white);
    display: inline-flex;
    padding: 0;
    transition: all .4s ease;
}

.shop-btn a {
    color: var(--pink);
    text-decoration: none;
    font-size: 24px;
    text-transform: uppercase;
    padding: 20px 40px;
    transition: all .4s ease;
}

.shop-btn button:hover,
.shop-btn button:focus {
    background: var(--pink);
    color: var(--white);
}

.shop-btn button:hover a,
.shop-btn button:focus a {
    background: var(--pink);
    color: var(--white);
}

@media (max-width: 992px) {
    .header .social-icons svg {
        height: 50px;
    }

    .header .social-icons a {
        margin: 0 15px 10px;
    }
}

@media (max-width: 542px) {
    .header .social-icons svg {
        height: 35px;
    }

    .header .social-icons a {
        margin: 0 5px 10px;
    }

    .footer-text-icon {
        position: absolute;
        right: 15px;
        bottom: -50px
    }

    .footer-text-icon svg {
        width: 80px;
        height: auto;
    }

    .contact-icons svg {
        width: 70px;
    }
}
