
/*choices for linked fonts 
font-family: 'Caveat', cursive;
font-family: 'Henny Penny', cursive;
font-family: 'Orbitron', sans-serif;
font-family: 'Unica One', cursive;
font-family:'Unica One', sans-serif;
}


/* use the * to include everything / resets so the browser defaults don't put weird spacing around
and the box includes extras inside the total size specified*/

* { padding:0;
    margin:0;
    box-sizing: border-box;}


/* things that carry through the body */
body {
    font-family:'Orbitron', sans-serif;
    font-size: 2rem;
    line-height: 1.6;
    font-kerning: 1.5;
    background: black;
    color:aqua;
}

img {
    max-width: 100%;
}

h1, 
h2 {
    margin: 15px;
}

.forthep p {
    font-size: 1.5rem;
    background:transparent;
    border: 1px solid green;
}

ul {
    list-style-type: none;
}

.container {
    max-width:1100px;
    margin: 0 auto;
    padding: 0 30px;
    margin: 0 auto;
    align-items:center;
}

p {
    padding:18px;
    border-radius:5%;
    font-size:1.8rem;
    background:rgba(9, 238, 207, 0.5);
    box-shadow: 0, 0, 0, 0.7;
}

/* navigation */
.navbar {
    height: 60px;
    color:white;
    background: rgba(0,0,0,0.7); 
}


.navbar .logo {
    font-size: x-large;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-size:18px;
    font-weight: bold;
}

.navbar ul li a{
    text-decoration:none;
    color: pink;
  
}

.navbar ul li a:hover {
    background:aqua;
    padding:14px;
    border-radius:10px;
    transition: .75s ease-in-out;
    border-bottom: 5px solid white;
    color:black;
    box-shadow: 0 0 14px rgba(197, 4, 155, 0.479);
}

.navbar .container {
    display:flex;
    justify-content: space-between;
    align-items:center;
    height: 100%;
}

.navbar ul {
    display:flex;
}

.navbar ul li {
    margin-left: 20px;
}

.header h1 {
    font-size: 3rem;
    line-height: 1.5;
}

.header img {
    max-width: 400px;
}

.header .container {
    display:flex;
    align-items:center;
    justify-content: space-between;
}
/* this is to style the children */
.boxes .container {
    display:flex;
    justify-content:space-between;
}

h2 {
    font-size:1em;
}

.box {
    flex:1;
    background: lightblue;
    color:blue;
    border-radius: 10px;
    margin: 20px 10px;
    box-shadow: 0 3px 5px rgba (0,0,0,0.7);
    padding: 15px 20px;
    transition:.5s;
}

.box:hover {
    background:rgb(255, 255, 255);
    border: 5px 12px green 0.6;
}

.container .box p {font-size:.4em;}

.fas {
    justify-content:center;
}

.box i {
    margin-right:10px;
}

img {
    border-radius:10%;
    box-shadow: 0px 10px 20px orange;
  
}

@media (max-width: 768px)
{
.header .container {flex-direction:column; padding-top: 20px;text-align:center;}
.boxes .container {display:block; text-align:center;}
}




/*--------------------------------------*/
