/* Html / Body */

html,


body {
	border: none;
	margin: 0;
	padding: 0;
    font-family: arial,sans-serif;
    background-color: lightslategray;
   
    
}






.header{
	
	min-height: 5vh;
	width: 100%;
	
	position: fixed;
	z-index: 99;
	border-bottom: 3px;
	border-bottom-color: black;
    background-color:rgb(24, 32, 65);


    
	
	}
	
nav{
	display:flex;

	justify-content:space-between;
	align-items:center;
	 
	
	}

.nav-links{
	flex: 1;
	text-align:right;
	
	
	
}
	
	.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
	
	
}

	.nav-links ul li a{
		color: white;
		text-decoration: none;
		font-size: 20px;
	
	
	
}
	
	
		.nav-links ul li::after{
		content: '';
		width: 0%;
		height: 2px;
		background: black;
		display: block;
		margin: auto;
		transition: 0.5s;
	
	
}

.nav-links ul li:hover::after{
	width:100%;
	
}

nav .fa{
	display:none;
}



@media(max-width: 700px){
	.text-box h1{
		font-size: 20px;
	}
	
	.nav-links ul li{
		display: block;
	}
	
	.nav-links {
	position: absolute;
	background: slategray;
	height: 100vh;
	width: 200px;
	top:0;
	right:-200px;
	text-align: left;
	z-index:2;
	transition: 1s;
	}
	
	nav .fa {
		display:block;
		color:white;
		margin: 20px;
		font-size: 30px;
		cursor: pointer;
		
	}
	
	.nav-links ul {
		padding: 30px;
		
	}


}











.cover{
	box-shadow: inset 0px 10px 14px 0px #000000;
	min-height: 100vh;
	width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.6),rgba(4,9,30,0.6)),url(../images/background.png);
	background-position: center;
	background-size: cover;
	position:relative;
  
	}

h1 {
    
    margin-top:200px;
    color:#66bb6a;
    text-shadow: 1px 1px 2px black;
    font-size: 150px;
    text-align: left;
}


h2 {
    
    margin-top:100px;
    color:#66bb6a;
    text-shadow: 3px 3px 5px black;
    font-size: 80px;
    text-align: left;
}


.allyousee{
    box-shadow: inset 0px 10px 14px 0px #000000;
  
    min-height: 100vh;
	width: 100%;
    

}



.box {

    display: flex;
    align-items: center;
    justify-content: center;
    

}
.box-element {
    
    display:flex;
    float: left;
    background-color: #66bb6a;
    padding: 20px;
    width: 180px;
    height: 130px;
    margin: 10px;
    box-shadow: 0px 0px 5px 0px black;
    
    font-size: 20px;
    color:black;
    cursor:pointer;

    align-items: center;
    justify-content: center;


    

}

.box-element-straight {
    
    display:grid;   
    background-color: #66bb6a;
    padding: 20px;
    width: 180px;
    height: 300px;
    margin: 10px;
    box-shadow: 0px 0px 5px 0px black;
    font-size: 20px;
    color:black;
    text-align: center;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    border-radius: 25px;
}

.text-box {
   text-align: center;
 
}

.buttonBox {
    display: inline-block;
    border: none;
    width: 150px;
    padding: 20px;
    margin: 10px;
    background-color: slategray;
    box-shadow: 0px 0px 5px 0px white;
    font-size: 20px;
    color:black;
    border-radius: 30px;
}

.buttonBox:hover {
    box-shadow: 0px 0px 15px 0px white;
    cursor:pointer;
}


.box-element-straight:hover {
    opacity: 1;
    box-shadow: 0px 0px 15px 0px black;
    
    
    color:black;

}


.box-element.a{
    border-radius: 150px 300px 40px 200px;
}

.box-element.b{
    border-radius: 300px 300px 40px 40px;
}

.box-element.c{
    border-radius: 300px 150px 200px 40px;
}

.box-element.d{
    border-radius: 300px 40px 40px 300px;
    
}

.box-element.e{
    
    border-radius: 15px 15px 15px 15px;
}

.box-element.f{
    border-radius: 40px 300px 300px 40px;
}

.box-element.g{
    border-radius: 200px 40px 300px 150px;
}

.box-element.h{
    
    border-radius: 40px 40px 300px 300px;
}

.box-element.i{
    border-radius: 40px 200px 150px 300px;
}




.box-element:hover {
    box-shadow: 0px 0px 15px 0px black;
    background-color: #c8e6c9 ;
    color:black;
	
    
    

}

.box-inline {
   

    
}



/* Navigation */

nav{
    margin-right: 5px;
}

li{
    list-style: none;
    display: inline-block;
    text-decoration: none;
    padding: 5px;
 



}

a{
    text-decoration: none;
    color: black;
    font-size: 15px;

}

a:hover{
    text-decoration: underline;
}

.middle {
    
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
   
}

.chart {
    
    padding: 200px;
    background-color: slategray;
    width: 240px;
    
    border-radius: 25px;
  
}

.middleButton {
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.button {
    display: inline-block;
    border: none;
    width: 100px;
    padding: 10px;
    margin: 10px;
    background-color: #66bb6a;
    box-shadow: 0px 0px 5px 0px black;
    font-size: 20px;
    color:black;
    
 
}




.button.a {
    border-radius: 15px 2px 2px 15px;
   
    cursor:pointer;
}

.button.a:hover {
    box-shadow: 0px 0px 15px 0px black;
    background-color: #c8e6c9 ;
    color:black;

}

.button.b {
    border-radius: 2px 2px 2px 2px;
   
    width: 400px;
}



.button.c {
    border-radius: 2px 15px 15px 2px;
    
    cursor:pointer;
}

.button.c:hover {
    box-shadow: 0px 0px 15px 0px black;
    background-color: #c8e6c9 ;
    color:black;

}






footer{
    
    background-color: rgb(165, 167, 172);
    text-align: center;
    font-size: 15px;
    color: rgba(4,9,30,0.8);
    
    left: 0;
    bottom: 0;
    width: 100%;
}

a.footer-a{
   
    color:white;
}

.border-bottom{
    border: 1px solid rgba(4,9,30,0.6);
}

