/* Pricing || style.css */

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

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

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

#navbar {
  position: fixed;
  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;
}

#navbar 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 {
  cursor: pointer;
  padding: 8px;
  font-size: 1.3em;
  font-weight: 600; 
  letter-spacing: 0.03em; 
  background: rgba(0, 0, 0, 0.55); 
  border: 2px solid #0ef; 
  border-radius: 5px; 
  color: #fff;
  transition: .2s ease;
}

button:hover {
  transform: scale(1.1);
  opacity: 0.8;
  border: 2px solid lightgreen;
}

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

ul span {
  font-size: 1.1em;
  color: #0ef; 
  font-weight: 600;
}

.middle-container {
  display: flex; 
  justify-content: center; 
  align-items: center; 
  text-align: center; 
  gap: 120px; 
  padding: 25px;
}

@media only screen and (max-width: 768px) {
  body {
    overflow-y: scroll;
  }
  .middle-container {
    flex-direction: column;   
    gap: 55px;
  }
}
