@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Red Hat Display', sans-serif;
    overflow: hidden;

}

body {
    width: 100vw;
    height: 100vh;
    background: url(./img/bg-maruhome.jpg) no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.container-fluid {
    width: 100vw;
    height: 96vh;
}

.col-12 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.maruLogo {
    width: 250px;
    margin-top: 17%;
}

.box {
    margin-top: 50px;
    width: 552px;
    height: 162px;

    background: #FFFFFF;

    display: flex;
    align-items: center;

    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.25);
    border-radius: 4px;

}

.box span {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
}

.box span p {
    width: 80%;
    margin-top: 10px;

    font-style: normal;
    font-weight: 400;
    font-size: 15.8px;
    line-height: 24px;
}

.box span img {
    margin-top: 12px;
}

.footer {
    background: #630A37;
    color: #FFFFFF;

    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;

    height: 4vh;
    width: 100%;

    text-align: center;
}

@media screen and (max-width:768px) {
    .container-fluid {
        width: 100vw;
        height: 96vh;
    }

    .col-12 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .maruLogo {
        width: 150px;
        margin-top: 140px;
    }

    .box {
        
        width: 80vw;
        height: 40%;
     

        background: #FFFFFF;

        display: flex;
        align-items: center;

        box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.25);
        border-radius: 4px;

    }

    .box span {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-evenly;
    }

    .box span p {
        width: 80%;
        margin-top: 10px;

        font-style: normal;
        font-weight: 400;
        font-size: 15.8px;
        line-height: 24px;
    }

    .box span img {
        margin-top: 12px;
    }

    .footer {
        background: #630A37;
        color: #FFFFFF;

        font-style: normal;
        font-weight: 400;
        font-size: 10px;
        line-height: 35px;
      

        height: 4vh;
        width: 100%;

        text-align: center;
    }
}