/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* highlights */

 ::selection  { 
  background: #003153
  }
::-moz-selection {
  background: #016554;
}

/* fonts */

@font-face {
	font-family: 'DaintySpring'; 
	src: url('myfont-webfont.eot?#iefix') format('embedded-opentype'), 
	     url('fonts/DaintySpring-MAm9B.ttf')  format('truetype'),
	}

@font-face {
	font-family: 'Bonny'; 
	src: url('myfont-webfont.eot?#iefix') format('embedded-opentype'), 
	     url('fonts/Bonny-Variable.ttf')  format('truetype'),
	}
/* divs and body  */

  h1
  {
    font-family: Bonny;
    font-size: 60px;
    color:AntiqueWhite;
    letter-spacing: 5px;
    text-shadow: 0px 0px 7px MidnightBlue;
    margin: 2;
    padding: 7px;
    }

  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%;
    
}


.geeks p {
    text-align: center;
    font-size: 16px;
    color: black;
}