﻿/*Stylesheet For My Website*/
body {
  background-color: #b0e0e6;
  padding: 10px;
}

nav {
  text-align: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  font-family: Verdana;
}
nav ul {
	list-style-type: none;
	padding: 1%;
	margin: 0;
	overflow: hidden;
	background-color: #111111;
}

nav li {
	display: inline-block;
	color: aqua;
	padding: 7px;
	text-decoration: none;
	font-size: 20px;
}

nav li a:hover {
	background-color:#333333;	
	color: #f5f765;
}

nav a {
  color: #f542ff
}

footer {
  text-align: center;
}

.form-container {
  text-align: center;
}

.grid {
	font-size: 20px;
}

.hamburger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

@media (max-width: 425px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }
}
@media (max-width: 425px) {

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 15px;
    background: #111111;
    flex-direction: column;
    padding: 10px;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}