#clouds {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

body {
    background-color: #0080ff;
}

.business-card {
    height: 90vh;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Merriweather, Arial, Helvetica, sans-serif;
}

.business-card .content {
    background: black;
    color: white;
    padding: 0 20px 20px 20px;
    overflow: auto;
}

.business-card .content .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.business-card .content .column {
    width: 30%;
}

a, a:hover, a:visited, a:active {
    text-decoration: none;
    color: white;
}

