@font-face {
  font-family: myFirstFont;
  src: url(../font/digital-7.ttf);
}

span {
    font-family: myFirstFont;
}

body {
  font-family: "Arial", sans-serif;
  color: #fff; /* Light text color */
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: sans-serif;
  /*background: linear-gradient(black, #0078ff);*/
}

.header_nav-li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  font-weight: 500;
  color: greenyellow;
  font-size: 18px;
  transition: 0.25s ease;
  cursor: pointer;
}

.header_nav-li:hover {
  color: darkviolet;
  opacity: 0.9;
}

.header_nav-online {
  opacity: 0.8;
  font-weight: 300;
  font-size: 0.9em;
  position: relative;
  width: 85px;
  margin-right: 5px;
}

.header_nav-online:before {
  content: "";
  width: 11px;
  height: 6px;
  display: inline-block;
  border-radius: 100%;
  border-bottom: solid 2px #7baf36;
  border-top: solid 2px #7baf36;
  background: #7baf36;
  outline: none;
  box-shadow: 0px 15px 13px rgba(123, 175, 54, 0.4);
  margin-right: 7px;
  animation: pulse 2s infinite;
  margin-left: 15px;
  position: absolute;
  left: -36px;
  top: 4px;
}

.body,
html {
  background: #222;
}

.main-menu {
  display: flex;
}

.lang-select {
  border: 1px solid white;
  display: block;
  width: 60px;
  text-align: center;
  padding: 5px 10px;
  border-radius: 50px;
  height: auto;
  max-height: 600px;
  transition: max-height 2s;

  .flag-img {
    height: 40px;
    width: 40px;
    display: none;
    padding: 5px 0;
  }

  .lang-show {
    display: block;
  }

  .lang-selected {
    display: block;
    &:hover {
      cursor: pointer;
    }
  }
}

.container {
  text-align: center;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
background-color: #315459;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  color: #007bff;
}

button {
  padding: 15px;
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 20px;
  background-color: #007bff; /* Blue button color */
  color: #fff; /* Light text color */
  border: none;
  border-radius: 4px;
}

/* Hover effect for the button */
button:hover {
  background-color: #0056b3; /* Slightly darker blue on hover */
}

textarea {
  width: 175%;
  height: 200px;
  padding: 15px;
  resize: none;
  background-color: #555; /* Dark background for the textarea */
  color: #fff; /* Light text color */
  border: none;
  border-radius: 4px;
}
