/* Reset some default padding/margin */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: px_sans_nouveaux;
  src: url('Fonts\ms-sans-serif-1.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: #008080; 
  color: #fffbe0; 
  font-family: 'px_sans_nouveaux', sans-serif, sans-serif;
  text-align: center;
  padding: 40px 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.logo {
  font-size: 2.5em;
  font-weight: bold;
  color: #fffbe0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav a {
  text-decoration: none;
  color: #fffbe0;
  font-size: 1.2em;
  position: relative;
}

nav a.active::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-color: #fffbe0;
  margin-top: 5px;
}

.win95-dialogue {
  width: 850px;
  border: 2px solid #000;
  margin: 60px auto;

  background-color: #c0c0c0;
      border-top: 2px solid #ffffff;
      border-left: 2px solid #ffffff;
      border-right: 2px solid #404040;
      border-bottom: 2px solid #404040;
      box-shadow: 2px 2px 0px 0px rgba(0,0,0,0.4);
      text-align: ce;
}

.title-bar {
  background: linear-gradient(to right, #000080, #a0a0ff);
  color: white;
  padding: 2px 8px;
  font-size: 19px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 33px;
}


.dialogue-body {
  padding: 22px;
  background-color: #c0c0c0;
  color: black;
}

.DboxTitle {
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 8px;
}

.dialogue-body-TextInside {
  font-size: 19px;
  margin-bottom: 12px;
  justify-content: center;
}

.dialogue-body p,
.dialogue-body li,
.dialogue-body a {
  margin: 4px 0;
  color: black;
  text-decoration: none;
}

.dialogue-body a:hover {
  text-decoration: underline;
}

.button-group {
  padding-right: 11px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  gap: 7px;
}

.button-group button {
  padding: 2px 10px;
  font-size: 17px;
  background: #c0c0c0;
      border-top: 2px solid #ffffff;
      border-left: 2px solid #ffffff;
      border-right: 2px solid #404040;
      border-bottom: 2px solid #404040;
      box-shadow: 1px 1px 0px 0px rgba(0,0,0,0.4);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px;
      color: #000;
  cursor: pointer;
}

.button-group button:active {
  border-top: 2px solid #404040;
      border-left: 2px solid #404040;
      border-right: 2px solid #ffffff;
      border-bottom: 2px solid #ffffff;
      box-shadow: none;
}
