* {
    box-sizing: border-box;
}
body {
    font-family: Arial;
    margin: 0;
}

/* Header */
header {
    padding: 60px;
    text-align: center;
    background: black;
    color: white;
}

/* top navigation bar */
.navbar {
    display: flex;
    background-color: #333;
}

/* navigation bar links */
.navbar a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}

/* change color on hover */
.navbar a:hover {
    background-color: #ddd;
    color: black;
}

/* column container */
.row {
    display: flex;
    flex-wrap: wrap;
}

/* sidebar/left colunn */
.side {
    flex: 30%;
    background-color: #f1f1f1;
    padding: 20px;
}

/* main column */
.main {
    flex: 70%;
    color: white;
    background-image: url(https://64.media.tumblr.com/0820e86ce15a2fd72c210e3ae51f3080/tumblr_mlnzccW0EW1qzaj5to1_r1_400.gifv);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 20px;
}

/* fake image, just for this example */
.fakeimg {
    background-color: #aaa;
    width: 100%;
    padding: 20px;
}
footer {
    padding: 20px;
    text-align: center;
    background: #ddd;
}

.motto{
    flex: 100%;
    color: white;
    background-image: url(https://media.giphy.com/media/v1.Y2lkPWVjZjA1ZTQ3d2p5NjBkb3dtNTZ3aDVhM2kxbGg3OGlkMnlmaTBmbXQ5eWRvdmR2eiZlcD12MV9naWZzX3JlbGF0ZWQmY3Q9Zw/3o7aD9y2CKtGHRfhOE/giphy.gif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding:480px;https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExMW
}

/* responsive layout - when screen is less than 700px wide, make the two cc */
@media screen and (max width :700px) {
.row, .navbar {
    flex-direction: column;
}
}