/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #F5F6FF;
  color: black;
  font-family: Verdana;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  color:#183969;
  background-clip: text;
  -webkit-background-clip: text;
}

.tab-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  border-bottom: 2px solid #ccc;
}

.tab {
  background-color: #202020;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid #ccc;
  border-bottom: none;
  margin-right: 5px;
  border-radius: 8px 8px 0 0;
}

.tab:hover {
  background-color: #444;
}

.active-tab {
  background-color: #fff;
  color: #000;
  border-bottom: 2px solid white;
  position: relative;
  top: 2px;
}

.tab-content {
  display: none;
  border: 1px solid #ccc;
  padding: 20px;
  background-color: #fff;
  margin: 0 auto;
  max-width: 600px;
}

.active-content {
  display: block;
}