/* styles.css */

@font-face {
	font-family: 'DaintySpring';
	src: url('myfont-webfont.eot?#iefix') format('embedded-opentype'), 
	     url('DaintySpring-MAm9B.ttf')  format('truetype'),
	}

  h1
  {
    font-family: DaintySpring;
    font-size: 60px;
    color:AntiqueWhite;
    letter-spacing: 5px;
    text-shadow: 0px 0px 7px DarkGoldenRod;
    }

  p
    {width: 320px;
    height: 100%;
    padding: 10px;
    margin: 2;
    border: 5px solid DarkGoldenRod;
    color: white;} 
    
   a
    {color:white;}

.geeks {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid black;
    border-radius: 10px;
    background-color: skyblue;
    margin-bottom: 10px;
    width: 20%;

}

.appBackground {
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-image: url('images/orangebackground.jpg'); }

.geeks h2 {
    color: green;
    font-size: 24px;
    margin-bottom: 10px;
}

.geeks p {
    text-align: center;
    font-size: 16px;
    color: black;
}