header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1a1a2e;
  height: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

header nav {
  gap: 28px;
}

a{
  color: white;
  opacity: 0.65;
  text-decoration: none;
  font-size: 20px;
}

a:hover {
  color: white;
  opacity: 1;
}

p{
  color: white;
  opacity: 0.65;
  text-decoration: none;
  font-size: 20px;
}

p:hover {
  color: white;
  opacity: 1;
}

.logo {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

main {
  padding-top: 56px;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

footer{
    background: #1a1a2e;
    width: 100%;
}


.NavInfo{
    gap: 20px;
}

.row{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.column{
    display: flex;
    flex-direction: column;
}

.AItemC{
    align-items: center;
}

.AItemR{
    align-items: flex-end;
}

.WInh{
    max-width: inherit;
    width: inherit;
}

.SpBt{
    justify-content: space-between;
}

.NavInfo a{
    font-size: 16px;
}

.LogoBottom{
    font-size: 40px;
}


