.container {
    max-width: 860px;
}

.box-ui ui{
width: 480px;
}

/* Default styles for desktop */
body {
    font-size: 16px;
    line-height: 1.5;
}

/* Styles for phone */
@media only screen and (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 1.3;
    }
    /* Add styles here to adjust the layout and design for a phone */
    img{
      width:50%;
      height:auto;
    }
    h1{
        font-size:1.5em;
    }
}

@media only screen and (max-width: 480px) {
table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    display: none;
}

tbody {
    display: block;
    overflow-y: scroll;
    height: 100px;
}

tbody tr {
    display: block;
    border-bottom: 1px solid #ccc;
}

tbody td {
    display: block;
    text-align: center;
}

@media (min-width: 100px) {
    thead {
        display: table-header-group;
    }
    tbody {
        display: table-row-group;
    }
    tbody tr {
        display: table-row;
    }
    tbody td {
        display: table-cell;
    }
}

	
	
	
	
	
	
	
	
	
	
}