

*{
    box-sizing: border-box;
 
}


body{
    background-color: #C28285;
  
   
}

.container{
    min-height: 100vh;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    margin: 15px 15px 15px 15px;
}

.header{
   min-width: 100%;
   max-height: 40vh;
   display: flex;
   justify-content: space-between;
   
}



.oneBox{

width: 200px;


}

.twoBox{
 
 width: 400px;
 margin-left: 15px;

}

.threeBox{

 width: 250px;
 margin-left: 20px;

}


.logo{
   height: 100%;
   width: 100%;
}

.title{
    height: 100%;
    width: 100%; 
}

.fork{
    height: 100%;
    width: 100%; 
}

.main{
    min-width: 100%;
    margin: 15px 0;

}

.prices{
    width: 100%;
}



.footer{
    min-width: 100%;
    min-height: 2vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: #7E0845;
    font-family: 'Poppins', sans-serif;
}

h3{
    font-size: 25px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.right{
    margin-right: auto;
   
}

.sm{
    padding-left: 14px;
}

@media all and (max-width: 767px){
    h3{
        font-size: 17px;
    }
}

@media all and (max-width: 300px){
    h3{
        font-size: 10px;
    }
    .footer{
        min-height: 1vh;
    }

    .sm{
        width: 40px;
    }

}