html {
  height: 100%;
  width: 100%;
}

body {
  height: 100%;
  background-color: #1e1a1a;
  font-family: "Macondo", sans-serif;
  text-align: center;
  color: white;
}
body::-webkit-scrollbar {
  width: 10px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 15px;
  margin-left: 10px;
  z-index: 9999999;
}
body::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255);
  box-shadow: 0 10px 40px -10px #fff;
  border-radius: 5px;
  margin-left: 10px;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

h1 {
  color: white;
  font-family: "Macondo", sans-serif;
}

.noflex {
  display: block;
}

section {
  height: 100%;
  width: 100%;
  border-bottom: 5px solid white;
  scroll-behavior: smooth;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

header {
  background-color: #333;
  padding: 10px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  border-radius: 15px;
}

button {
  background-color: #555;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-family: 'Potta One', cursive;
  border-radius: 15px;
  transition: all 0.3s;
}
button:hover {
  transform: scale(0.8);
}

img {
  margin-bottom: 0;
}
p {
  font-size: 19px;
}

#section2 {
  background-image: url('section2.png');
  background-size: cover;
}

#section3 {
  background-image: url('section3.png');
  background-size: cover;
}


#section4 {
  background-image: url('section4.png');
  background-size: cover;
}


#section5 {
  background-image: url('section5.png');
  background-size: cover;
}


.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

table {
  width: 80%;
  border-collapse: collapse;
  margin-top: 20px;
  color: white;
  text-align: center;
}

th, td {
  border: 1px solid #dddddd;
  text-align: center;
  padding: 8px;
  color: white;
}

th {
  background-color: #1d1b1b;
}