body {
  background-color: #eeeeee;
  color: black;
  text-align: center;
  font-family: Verdana;
  font-size: 20px;
  
  padding-top: 90px;
  
  gap: 30px; 
}

html, body {
  overflow-x: hidden;
}


p {
  font-size: 15px;
}

.maincontent {
  flex: 1;
}

.topdiv {
  position: fixed;
  background-color: #eeeeee;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  border-bottom: 5px solid #e2e2e2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottomdiv {
  width: 100%;
  padding: 10px;

  border-top: 5px solid #2e2e2e;
  background-color: #131313;
  
  color: white;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mainImg {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}

.logo {
  transition: all 0.3s ease;
}

button {
  border-radius: 15px;
  padding: 15px;
  background-color: #eeeeee;
  outline: 3px solid #e2e2e2;
  
  transition: all 0.3s ease;
}

.linksa {
  color: #005304;
  font-size: 15px;
  transition: all 0.3s ease;
}

.linksb {
  color: #303030;
  font-size: 15px;
  transition: all 0.3s ease;
}

.topdiv button {
  transform: translateX(-50px);
  transition: transform 0.3s ease;
}

.buttons {
  display: flex;
  gap: 30px;
  align-items: center;
}

.topdiv button:hover {
  transform: translateX(-50px) scale(1.2);
}

.centered-div {
  margin-top: 50px;
  margin-bottom: 50px;
  outline: 12px solid #e2e2e2;
  width: 90%;
  max-width: 900px;
  padding: 40px;
  background-color: #f3f3f3;
  color: black;
  text-align: center;
  border-radius: 8px;
            
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}

.centered-div:hover {
  transform: translateY(-5px);
  outline: 14px solid #dcdcdc;
}

.logo:hover {
  transform: translateY(-1px) scale(1.05);
  
}

button:hover {
  outline-color: rgba(100, 100, 100, 0.8);
}

.linksa:hover {
  font-size: 17px;
  color: #007a06;
}
.linksb:hover {
  font-size: 17px;
  color: #4f4f4f;
}

@font-face {
  font-family: 'cardboard';
  src: url(assets/fonts/cc.otf) format("opentype");
}