@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: portrait) {


}

body {
  
background-image: url("../Images/background.png");
 
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	
}
.navigation {
  position: relative;
  float: right;
  width: 500px;

}


li {
  display: inline-block;
	padding: 0px 20px 0px 0px; 
	
}
.menpos {
  position: relative;
  float: right;
	text-decoration: none;
}
.menpos span{
	font-size: 130%;
	
}
.menpos a{
	text-decoration: none;
	color: blue;
}

/* Style the navigation menu */
.topnav {
  overflow: hidden;
  background-color: lightskyblue;
	opacity: .7;
  position: relative;
	float:right;
  width: 200px;
	z-index: 99;

}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  color: blue;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
	font-weight: bold;
  display: block;
font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}

/* Style the hamburger menu */
.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #ddd;
	opacity: .7;
  color: black;
}

/* Style the active link (or home/logo) */
.active {
  background-color: transparent;
  color: black;
}

.textdiv {

	display: grid;
	grid-template-columns: .9fr;
	gap: 1.5em;
 	margin-left: 10px;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	background: #FFFFFF;
	opacity: 0.5;
	border-radius: 25px;
	color: lightskyblue;
}


.mainimg{
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5em;
	z-index: 99;
 	margin-left: 100px;
	border-radius: 25px;
	width: 85vw ;
  max-width: 98vw ;
  height: auto ;
	
}

/* 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;
}

label{
	color: blue;
}

/* Add a background color and some padding around the form */
.container {

	display: grid;
	grid-template-columns: .5fr;
	gap: 1.5em;
 	margin-left: 10px;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	background: #FFFFFF;
	opacity: 0.6;
	border-radius: 25px;
}

footer {
 position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: white;
  color: blue;
  text-align: center;
	color: blue;
	
}
.grid-container{
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5em;
 	margin-left: 10px;
	
}
.grid-item{
	border: 1px solid #A181EA;
	border-radius: 5px;
	padding: .5em;
	background-color: #f2f2f2;
	opacity: .7;
	color: blue;
	font-size: 20px;
	margin-bottom: 10px;
}
.grid-item .title{
	font-size: 24px;
	font-weight: bold;
	
}
.grid-item .push{
	font-size: 18px;
	font-weight: bold;
	color: green;
	
}
.grid-item:target {
      color: blue;
      background-color: lightgray;
    }


