@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&amp;display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: raleway, sans-serif;
  font-size: 16px;
  color: white;
  box-sizing: border-box;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: auto;
}

body {
  background-image: url('../img/background.png') !important;
  background-repeat: repeat !important;
  background-attachment: fixed !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 750px;
}

@media only screen and (min-width: 980px) {
  body {
    zoom: 115%;
  }
}

html::-webkit-scrollbar-track {
  background-color: #97DEFF;
}

html::-webkit-scrollbar {
  width: 10px;
  background-color: #F5F5F5;
}

html::-webkit-scrollbar-thumb {
  background-color: #62CDFF;
}

html::-webkit-scrollbar-thumb:hover {
  background-color: #51add8;
}

h1,
h2 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  margin: 10px 0 0 10px;
}

h2 {
  text-align: center;
  margin-bottom: 10px;
}

hr {
  height: 1px;
}

a {
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
}

textarea {
  padding: 5px;
  resize: none;
  width: 100%;
  height: 60px;
  font-size: 18px;
  color: black;
  outline: 0;
  border-radius: 5px;
}

.label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  margin: 20px 10px 10px 10px;
}

.label:nth-child(1) {
  margin-left: 0;
}

section {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 750px;
  background: #336895;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 10px;
}

header {
  background-color: #fff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

.header-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.logo {
  font-size: 24px;
  margin: 0;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li:first-child {
  margin-left: 0;
}

nav ul li a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

nav ul li a:hover {
  color: #62CDFF;
}