body {
    margin: 0;
    /* background-color: rgb(237, 241, 241); */
    background-color:rgb(223,255,79);
    overflow-x: hidden;
}

.header_container{
    display: flex;
    position: relative;
    /* background-image: url("../assets/tballs.png"); */
    background-size: 100% 100%;
    text-align: center;
    font-size: 28px;
    height: 100px;
    margin-top: 0;
    /* border: 2px blue solid; */
}

.logo {
    position: absolute;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.2);
}

.logo img {
    margin-top: 5px;
    margin-left: 5px;
    height: 50px;
    width: 75px;
    border-radius: 10px;
    /* border: 2px red solid; */
}

.contact_container {
    position: absolute;
    display: flex;
    /* gap: 20px; */
    margin-top: 5px;
    right: 5px;
    /* border: 2px blue solid; */
    justify-content: right;
    flex-wrap: wrap;
}

.contact_element {
    display: flex;
    height: 50px;
    width: auto;
    margin-right: 5px;
    transition: transform 0.3s ease;
    text-decoration: bold;
    color: black;
    /* border: 2px red solid; */
}

.contact_element:hover {
    transform: scale(1.2);
}

.biz_card {
    align-items: center;
}

.biz_card img {
    height: 250px;
    vertical-align: top;
}

.stringing_header {
    margin-top: 0px;
    text-align: center;
    justify-content: center;
    align-items: center;
    /* border: 2px red solid; */
    font-size: 30px;
    padding: 10px;
}

.smiley_pic img {
    width: 100px;
    border-radius: 10px;
    margin: 10px;
}

.stringing_title {
    text-align: center;
    margin-bottom: 0px;
}

.stringing_header h1 {
    text-decoration: underline;
}

.stringing_desc {
    margin: auto;
    margin-top: 0px;
    font-size: 30px;
    width: 70%;
    line-height: 40px;
    /* border: 2px blue solid; */
}

.stringing_desc h5 {
    /* align-items: center; */
    width: 100%;
    justify-content: center;
    text-align: justify;
    padding: 5px;
}

footer{
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
    height: 50px;
    line-height: 50px;
    bottom: 0;
}

/* ************************************************************************ */
/* *********************************MOBILE********************************* */
/* ************************************************************************ */

/* @media (max-width: 480px) { */
@media screen and (max-width: 480px) {
    body {
        background-color:rgb(223,255,79);
        width: 100%;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    .biz_card img {
        width: 100%;
        height: auto;
    }

    .stringing_desc {
        width: 95%;
        margin-top: 0px;
    }
}