@import url('https://fonts.googleapis.com/css2?family=Inspiration&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');
*{
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    font-size: 12px;
}
body{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    /* background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("/image/bg.jpg"); */
    /* background-repeat: no-repeat;
    background-size: cover; */
    /* background-position: center; */
    color: #fff;
    position: relative;
}
.bgimage{
    left: 0;
    top: 0;
    position: absolute;
    background: linear-gradient(rgba(0, 0, 0, 0.418), rgba(0, 0, 0, 0.886));
    width: 100%;
    height: 100%;
    z-index: -1;
}
.bgimage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    object-position: center;
}
p{
    font-size: 2rem;
    text-transform: uppercase;
    margin: 15px 0;
    font-family: 'Inspiration', cursive;
    font-weight: bolder;
    letter-spacing: 2px;
}
.head{
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    gap: 10px;
}
.box{
    width: 50px;
    height: 50px;
    text-align: center;
}
.box h2{
    font-size: 1.5rem;
}
.box small{
    font-size: 1rem;
}
@media(min-width:768px){
    p{
        font-size: 3rem;
    }
    .head{
        font-size: 3rem;
    }
    .box h2{
        font-size: 2rem;
    }
    .box small{
        font-size: 1.5rem;
    }
    .container{
        width: 400px;
        gap: 30px;
    }
}
@media(min-width:992px){
    p{
        font-size: 3.5rem;
    }
    .head{
        font-size: 3.5rem;
    }
    .box h2{
        font-size: 2.5rem;
    }
    .box small{
        font-size: 2rem;
    }
    .container{
        width: 500px;
        gap: 60px;
    }
}
