*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
}

.header{
    position: relative;
    width: 100%;
    padding: 20px 5%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.header .logo{
    width: 200px;
    object-fit: cover;
}

.container-box{
    position: relative;
    padding: 20px 5% 50px;
    width: 100%;
    min-height: 80vh;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.container-box .imgBox img{
    width: 100px;
}

.details{
    padding: 50px 5%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.details .detailItem{

    padding: 0px 30px;
}

a{
    display: block;
    color: black;
    text-decoration: none;
}


@media screen and (max-width:600px) {
    .container-box{
        padding: 20px 4% 50px;
    }
}
/* 
@media screen and (max-width:450px) {
    .header .logo{
        width: 80px;
    }
    
}

@media screen and (min-width:600px) {
    .container-box{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width:768px) {
    .container-box{
        grid-template-columns: repeat(3, 1fr);
    }
} */

@media screen and (min-width:992px) {
    
}

@media screen and (min-width:1200px) {
    
}