@charset "utf-8";
/* CSS Document */
body{
	box-sizing: border-box;
	align-content: center;
	background: dodgerblue;
	width: 100%;
}
#logo{
	position: fixed;
	margin-top: -5%;
	margin-left: 2%;
	width: 13vw;
	z-index: 1;
	opacity: 0.9;}
header{
	max-height: 10%;
	text-align: center;
}

header nav {
		margin: auto;
	z-index: 1;
	margin-top: 2vh;
}
header nav ul{
	width: 99%;
	padding: 1%;
	margin: auto;
	text-align: center;
	text-decoration: none;
	list-style-type: none;
	display: inline-block;
	color: white;
}
header nav ul li{
	text-decoration-line: none;
	font-size: 2vw;
	font-weight:bolder;
	opacity: 0.9;
	margin: auto;
	width: 15vw;
	display: inline-block;
	color: white;
}
header nav ul li a{
	text-decoration: none;
	color: white;
}
header nav ul li a:hover{
	color: black;
	opacity: 1.0;
}

#title{
	display: flex;
	justify-content: center;
	margin-top: 1%;
	margin-bottom: 5%;
	margin-left: 30%;
	margin-right: auto;
	width: 40%;
	font-size: x-large;
	font-weight: bold;
	border: 4px solid white;
	text-align: center;
	border-radius: 10px;
	background-color: black;
	color: white;
	opacity: 0.9;
	z-index: 1;
}
/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
.container {
  margin-left: 25%;
  margin-top: 3%;
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  width: 50%;
}
h1{
    text-align: center;
    font-weight: bold;
    margin-top: 2%;
}
#cl{
    width: 50%;
    margin-top: 2%;
    margin-left: 24%;


}
#cl img{
    width: 5vw;
    height: auto;
}
#cl li{
    display: inline-block;
    width: 25%;
    margin: 3%;
    text-align: center;
    color: white;
    text-decoration: none;
}
#cl li a{
    color: white;
    text-decoration: none;
}
@media screen and (max-width: 850px){
    header nav ul li{
        font-size: 5vw;
        width: 30vw;
        background-color: slategray;
        border: 3px solid slategray;
        border-radius: 10px;
    }
    .container{
        width: 80%;
        margin-left: 5%;
        text-align: center;
    }
    #cl{
        margin-top: 4%;
        width: 90%;
        margin-left: 0%;
        margin-right: 1%;
    }
    #cl li{
        width: 26%;
    }
    #cl p{
        display: none;
    }
    #cl img{
        width: 10vw;
    }
}