@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
* {
  font-family: "Montserrat", sans-serif;
  user-select: none;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  height: 100%;
  background: black;
}

.coverimg {
  width: 100%;
  height: 700px;
  object-fit: cover;
  box-shadow: inset 5px 5px 5px #000;
}

.imgcon {
  width: 100%;
  height: 700px;
  position: relative;
  text-align: center;
  color: white;
}

.imgcon .centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
text-shadow: 2px 2px 5px black;
}

.imgcon .centered h1 {
  font-size: 45px
}


.texthead {
  width: 100%;
  height: 200px;
  position: relative;
  text-align: center;
  color: white;
}

.texthead .centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
text-shadow: 2px 2px 5px black;
}

.texthead .centered h1 {
  font-size: 45px
}


.navbar {
  margin: 0;
  height: 110px;
  background: #FFF;
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  border-bottom: 1px solid #2AE78E;
}

.navleft {
  height: 70px;
  position: absolute;
  left: 10px;
  align-items: center;
  display: flex;
  position: absolute;
  padding: 10px;
}

.navitems {
  display: flex;
  justify-content: right;
  height: 100%;
  align-items: center;
  gap: 10px;
  background: var(--background);
  margin-right: 20px;
}

.navitem {
  height: min-content;
  width: min-content;
  padding: 8px 8px;
  font-size: 15px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 0px;
  text-decoration: none;
}

.navitem[current] {
  background: #2AE78E;
}

.navitem span {
  color: #000;
  padding: 1px;
  font-size: 15px;
  font-weight: bold;
}

.navitem[current] span {
  color: #000;
}

.navitem:hover {
  transform: scale(1.1);
  transition: transform 450ms ease-in-out;
}

.navitem[current]:hover {
  transform: scale(1);
}

.navbar img {
  height: 100px;
}
 
#textcon {
  width: 100%;
  height: 550px;
  display: flex;
}

#textcon.green {
  background: #2AE78E;
}

#textcon.blue {
  background: #019CDB;
}

#textcon.pink {
  background: #DB015D;
}

#textcon.white {
  background: #FFF;
  height: 700px;
  align-items: center;
  justify-content: center;
}

#textcon.white .textimg  {
  width: auto;
}

#textcon .textimg {
  height: 550px;
  width: 50%;
} 

#textcon .containtext {
  height: 100%;
  width: 50%;
  padding: 50px;
  text-align: left;
  color: #000;
  display: grid;
  box-sizing: border-box;
}

#textcon.white .containtext {
  height: 500px;
  width: auto;
  padding: 100px;
  text-align: left;
  color: #000;
  display: grid;
  box-sizing: border-box;
}

.containtext h1 {
  padding: 20px;
  font-size: 40px;
}

.containtext span {
  padding: 20px;
  font-size: 25px;
  font-weight: bold;
}

.containtext p {
  font-size: 25px;
  font-weight: bold;
}


footer {
    background: #000;
    color: #2AE78E;
    display: flex;
    text-align: left;
    align-items: center;
    margin-top: auto;
    margin-bottom: 0px;
    height: 50px;
    padding: 0px 10px 0px 50px;
}

footer span {
  color: #FFF;
  left: 50;
  font-weight: bold;
  font-size: 17px;
}

footer .linkimg {
  height: 17px;
  padding: 10px;
}
