@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montez&display=swap');

.test-box {
    background: #212529;
    border: 4px solid #fff;
    color: white;
    width: 172px;
    height: 155px;
    margin: 5em;
    border-radius: 10px;
}

.test-text {
    position: absolute;
    top: 75px;
    left: 79px;
    height: 180px;
    color: #fff;
    background: transparent;
    font-family: Montez, poppins, Arial, Helvetica, sans-serif;
    font-size: 8em;
    font-weight: bold;
    letter-spacing: 5px;
    padding: 0 0.05em;
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: poppins, Arial, Helvetica, sans-serif;
}

.flex-wrap {
    flex-wrap: wrap;
}

.space-btw {
    justify-content: space-between;
}

.space-around {
    justify-content: space-around;
}

.flex-col {
    flex-direction: column;
}

.flex-end {
    justify-content: end !important;
}

.a-center {
    text-align: center;
}

.a-right {
    text-align: right;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.just-center {
    justify-content: center;
}

.navbar-brand {
    font-family: Montez, poppins, Arial, Helvetica, sans-serif;
    font-size: 2.5em;
}

.craft {
    text-align: center;
}

.craft > p {
    margin-top: -1.5em;
    margin-bottom: 0.2em;
    font-size: 0.7em;
    cursor: default;
}

.navbar-nav > a {
    font-size: 1.2em;
    margin: 0 0.3em;
}

.home > img {
    width: 100%;
    margin-bottom: 1.2em;
    border-radius: 2px;
    opacity: 0.92;
}

.wrapper {
    width: 90%;
    margin: 2.5em auto 0 auto;
    max-width: 1000px;
}

.logo > h1 {
    font-family: Montez, poppins, Arial, Helvetica, sans-serif;
    font-size: 7em;
}

.logo > p {
    font-family: poppins, Arial, Helvetica, sans-serif;
    font-size: 1.5em;
    margin-top: -1em;
}

.wrapper h2 {
    padding: 3em auto;
    font-size: 3em;
}

.wrapper hr {
    width: 100%;
}

.logo {
    text-align: center;
}

.img1 {
    width: 40%;
}

.img2 {
    width: 35%;
}

.img3 {
    width: 25%;
}

footer {
    margin-top: auto;
}
footer > span {
    color: white;
    padding: 0.2em;
    opacity: 0.5;
}

.portfolio > img {
    width: 43%;
    margin: 0.5em;
    border-radius: 2px;
    object-fit: cover;    
}

.custom-width {
    text-align: center;
    width: 74%;
    font-size: 1.2em;
}

.shop-card > img {
    width: 42%;
    object-fit: cover;
    opacity: 0.92;
    border-radius: 2px;
    z-index: -1;
    margin-bottom: 2em;
}

.shop-info {
    padding: 1.5em;
    width: 100%;
}

a > span {
    font-family: montez;
    font-size: 1.5em;
}

button > a {
    text-decoration: none;
}

.about-card > img {
    opacity: 0.92;
    width: 37%;
    margin-top: -0.5em;
    margin-right: 0.2em;
    margin-bottom: 0.7em;
}

.contact-card {
    height: 55vh;
    font-size: 1.2em;
}

.contact-card > iframe {
    width: 45%;
    border-radius: 2px;
}

.contact-info {
    padding: 1em;
    width: 55%;
}

@media (max-width: 325px) {
    .logo > h1 {
        font-size: 3.5em !important;
    }
}

@media (max-width: 576px) {
    .home >  img {
        height: 15vh !important;
        object-fit: cover;
    }

    .portfolio > img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .logo > h1 {
        font-size: 4.5em;
    }

    .logo > p {
        font-size: 1.2em;;
    }

    .wrapper {
        margin: 1.5em auto 0 auto;
    }

    .wrapper > h2, h3 {
        text-align: center;
    }

    .home > img {
        height: 20vh;
        object-fit: cover;
    }

    .portfolio > img {
        width: 100%;
    }

    .shop-card {
        display: flex;
        flex-direction: column;
    }

    .shop-card > img {
        width: 90%;
    }

    .shop-info {
        text-align: center;
    }

    .about-card > img {
        width: 45%;
    }

    .contact-card {
        display: flex;
        flex-direction: column;
    }

    .contact-card > iframe {
        width: 100%;
        height: 100%;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .portfolio > img {
        width: 75%;
    }
}

@media (max-height: 580px) and (max-width: 768px) {
    .contact-card > iframe {
        display: none;
    }
}