body{
    background-color: rgb(67, 96, 97);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgb(255, 226, 202);
    font-size: 8vmin;
    font-weight: 800;
    margin: 5px 0 200px 0;
}

div{
    background-color: rgb(255, 94, 0);
    margin: 4%;
    padding: 10px 40px 5px 20px;
    width: 960px;/* width of the content not including border and margin is */
    height: fit-content; 
    box-shadow: 8px 8px 8px #ff2020;
}

h1{
    font-size: 24vw;
    left: 0;
}

.border-box{
    color: black;
    background-color:gold;
    width:960px;
    height: fit-content;
    box-sizing: border-box; /*recaculate all the border padding margin to get total 960px width */
}

img{
    margin: 20px;
    width: 100%;
}

.small{
    width: 10rem;
}