/* Contact || style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  overflow: hidden;
  background: rgba(22, 27, 34, 1);
  color: #fff;
}

main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.03em;
}

#navbar {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  border-bottom: 1px solid lightgrey; 
  color: #fff; 
  align-items:center;
  text-align: center;
  font-family: Arial, sans-serif;
  padding: 5px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5), 0 0 40px 0 rgba(0, 0, 0, 0.5), 0 0 60px 0 rgba(0, 0, 0, 0.5); 
  background:rgba(0,0,0,0.35); 
  letter-spacing:1.1px; 
  font-size: 0.8125em;
}

#navbar a {
  cursor: pointer;
  transition: .2s ease;
}

a:hover {
  color: #0ef;
}

#navbar a i {
  color:#0ef; 
  font-weight:bold;
  transition: .2s ease;
}

#navbar a i:hover {
  transform: rotate(180deg);
}

a {
  text-decoration: none;
  color: #fff;
}

button {
  font-size: 1em;
  padding: 3px;
  cursor: pointer;
}

h1 {
  color: #0ef;
  font-weight: 600;
}

