@charset "utf-8";
/*CSS Document*/

.div1 {
     background-color: #6B0504;
    font-size: 40px;
    text-align:center;
    height:10px;
    width: 50px;
}

.div2 {
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/4/49/A_black_image.jpg");
    font-size: 30px;
    text-align:center;
    height: 250px;
    margin: 10px;
}

.form-row {
    padding: 10px 0;
    display: flex;
}

.form-row label {
    padding-right: 10px;
}

.form-row input {
    flex:1;
}

.column-layout {
    max-width:1300px;
    background-color:#FFF;
    margin: 40px auto 0 auto;
    line-height: 1.65;
    padding: 20px 50px;
    display:flex;
}

.main-column {
    flex:2;
}

.sidebar-one {
    flex:1;
}

.sidebar-two {
    flex:1;
}

.call-outs-container {
        max-width:1400px;
        margin: 40px auto 0 auto;
        display: flex;
        align-items: stretch;
    }
    .call-out {
        padding:20px;
        margin-bottom:20px;
        flex:1;
    }
    
    
    .call-out:nth-child(1) {background-color:#eeeeee;}
    .call-out:nth-child(2) {background-color:#ffffff;}
    .call-out:nth-child(3) {background-color:#b6562a;}
    .call-out:nth-child(4) {background-color:#668c6f;}


.topnav {
  background-color: black;
  overflow: hidden;
}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #fff;
  color: black;
}

.topnav a:active {
  background-color: #e1f8ff;
  color: white;
}