header {
    background-color: #213;
    padding: 15px;
}

nav {
    display: flex;
    justify-content: space-around;
}

nav a {
    color: pink;
    text-decoration: none;
    padding: 8px 15px;
}

.float-img {
    float: left;
    width: 200px;
    margin-right: 15px;
    border: 3px solid #213;
    padding: 5px;
}

.box {
    position: relative;
    background-color: pink;
    padding: 20px;
    margin-top: 20px;
}

.box span {
    position: absolute;
    top: 5px;
    right: 10px;
    background-color: red;
    color: white;
    padding: 3px 6px;
    font-size: 12px;
}

.clear {
    clear: both;
}
.box span {
    position: absolute;
    top: 5px;
    right: 10px;
    background-color: red;
    color: white;
    padding: 3px 6px;
    font-size: 12px;
    border-radius: 3px;
}