/* universal selector used to normalize box-sizing for all browsers */
html {
    font-size: 100%;
    box-sizing: border-box;
}
* {
    box-sizing: inherit;
}
body {
    font-family: 'Verdana', sans-serif;
    color: #333;
    background: #fff9ef;
    margin: 2rem auto;
    padding: 2rem;
    max-width: 700px;
}
div {
    display: inline-block;
    width: 150px;
}
.no-color {
    height: 110px;
    border: 1px solid #999;
}

/* links */
a {
    color: #237b93;
    text-decoration: underline;
}
a:hover {
    color: #d332cb;
    text-decoration: none;
}
