body {
  margin: 0;
  padding: 0;
  user-select: none;
}

.main {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.alert.success {
  color: #00cc00;
}

.alert.error {
  color: #e60000;
}

.alert.warning {
  color: #ffa500;
}

.main-background {
  /* border: 1px solid red; */
  width: 100vw;
  height: 170vh;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.main-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.main-container .header {
  margin-left: 80px;
  margin-top: 60px;
  margin-right: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.main-container .header .logo {
  display: flex;
  flex-direction: row;
  font-size: 22px;
  /* justify-content: center; */
  align-items: center;
  gap: 10px;
}

.main-container .header .logo svg {
  width: 36px;
  height: 36px;
  background-color: #dc111c;
  fill: #fff;
}

.main-container .header .nav {
  color: #0f1038;
  display: flex;
  gap: 30px;
  font-size: 14px;
  align-items: center;
}

.main-container .header .nav .nav-item {
  position: relative;
  /* text-transform: uppercase; */
  /* transition: color 0.3s ease; */
  display: block;
}

.main-container .header .nav .nav-item:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 1;
  height: 1px;
  width: 100%;
  background-color: #dc111c;
  transform: scaleX(0);
  transform-origin: 100% 0;
  transition: transform 0.3s cubic-bezier(0.17, 0.67, 0.83, 0.67), background-color 0.3s ease;
}

.main-container .header .nav .nav-item:hover {
  color: #dc111c;
}

.main-container .header .nav .nav-item:hover:before {
  transform: scaleX(1);
  transform-origin: 0 0;
}

.main-container .content {
  margin-top: -100px;
}

.main-container .content .center {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  /* background: rgba(255, 0, 0, 0.5); */
}

.main-container .content .center .description {
  /* display: flex; */
  /* justify-content: space-between; */
  /* margin-left: 380px; */
  /* margin-top: 150px; */
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #25293d;
  font-size: 70px;
  line-height: 100px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva,
    Verdana, sans-serif;
  /* font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial,
    sans-serif; */
}

.main-container .footer {
  position: absolute;
  bottom: 60px;
  right: 80px;
  color: #25293d;
  /* color: #8691a8; */
  font-size: 14px;
}

a {
  color: unset;
  text-decoration: none;
}
a:visited {
  color: unset;
}
