/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Oct 31, 2018, 2:14:14 PM
    Author     : zbquest
*/
h1{
    font-family: Cambria;
    color: #980606;
    font-weight: 200;
    font-size: 50px;
}
a{
    color: #980606;
}
a:hover{
    color: #672020f7;
}

h2{
    font-family: Cambria;
    color: #980606;
    font-weight: 200;
    font-size: 30px;

}

/*****Header******/
#header{
    display: flex;
    align-items: center;
    height: 50px;
    background: #980606;
    margin: 0 -20px;
}
#header > h1{
    padding-left: 15px;
}
#header > h1 > a{
    color: white;
    text-decoration: none;
}

/*****Container*****/
#container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/******Title******/
#title{
    width: 90vw;
}
#title > h1 {
    color: black;
    box-shadow:  #980606 0px 3px;
    padding-bottom: 10px;
}

/*****Content****/
#content{
    width:100%;
}

/****Section****/
#section{
    display: flex;
    text-align: center;
    height: 500px;
    align-items: center;
    justify-content: center;
}

#section:nth-child(2n){
    background-color: #980606;
}

#section:nth-child(2n -1){
    background-color: white;
}

#section > div > h1{
    margin-bottom: 20px;
}

.about{
    width: 75%;
}

.programs{
    width: 75%;
}

.BtC{
    background-image: url("./img1.jpg");
}

.prog > div{
    padding: 15px;
    height: 200px;
    border-radius: 15px 50px;
    background: white;
}

.logo{
    vertical-align: center;
    width: 150px;
 }
 
 
 #bio > #container > div > p{
     font-family: Century Gothic;
     font-size: 20px;
 }
 
 
    #diamond-shield {
      width: 0;
      height: 0;
      border: 50px solid transparent;
      border-bottom: 20px solid red;
      position: relative;
      top: -50px;
    }
    #diamond-shield:after {
      content: '';
      position: absolute;
      left: -50px;
      top: 20px;
      width: 0;
      height: 0;
      border: 50px solid transparent;
      border-top: 70px solid red;
    }