:root {
  --yellow: #f5df4d;
  --grey: #939597;
  --red: #cf5c78;
  --blue: #00589b;
  --green: #00a0b0;
  --white: #f0eee9;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
}
html {
  display: flex;
  justify-content: center;
  background: linear-gradient(var(--grey), var(--yellow));
}

body {
  display: flex;
  flex-direction: column;
  max-width: 1920px;
  height: 100vh;
}
h1 {
  font-size: 4rem;
  margin-top: 20px;
  margin-bottom: 50px;
}
h2 {
  color: var(--red);
  font-size: 3rem;
}
img {
  height: 80px;
}
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  margin: 20px;
  font-size: 2rem;
}

td,
th {
  border: 1px solid black;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: var(--white);
}
tr:nth-child(odd) {
  background-color: var(--grey);
}
th {
  background-color: var(--green);
}
form {
  display: flex;
  flex-direction: column;
  background: var(--green);
  font-size: 2rem;
  margin: 20px;
  padding: 30px;
  border-radius: 30px;
}
input {
  font-size: 2rem;
}

.btn {
  padding: 10px;
  border-radius: 20px;
}
#issMap {
  margin: 20px;

  width: 1366px;
  height: 768px;
}
