@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@300;400&family=Inter:wght@200;300;400;500;600&display=swap");
@font-face {
  font-family: 'Brinnan';
  src: url(/Brinnan\ Black.otf);
}
body {
  background-color: #f5f5f5;
  font-family: "Inter", sans-serif;
  text-align: center;
  background-image: url("./bg2.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  opacity: 1;
  z-index: 0;
  animation: fadeOut 2s 5s linear forwards;
}
.welcome {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 70px 0;
  min-height: 100vh;
  backdrop-filter: blur(2px);
  justify-content: center;
}
.preloader{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
}
.preloader #elements .el,
.preloader #home, 
.preloader #black-lines{
    opacity: 0;
}
h1 {
  font-size: 48px;
  font-family: 'Brinnan', 'Inter', sans-serif;
  margin: 0;
  margin-top: 50px;
}
h2 {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 28px;
  margin: 0;
  margin-top: 12px;
  margin-bottom: 50px;
  padding: 0 50px;
}
a {
  font-size: 24px;
  margin: 0;
  font-weight: 400;
  font-family: "Archivo", "Inter", sans-serif;
  color: inherit;
  text-decoration: none;
  display: block;
}
.mail {
  margin: 12px 0;
}
a:hover {
  color: #004173;
  font-weight: 600;
}
.contact{
opacity: 0;
}
.text{
    opacity: 0;
}
@media (min-width: 1025px) {
  body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .welcome {
    flex-direction: row;
    flex-wrap: wrap;
    min-height: unset;
    justify-content: space-between;
    padding: 100px 0;
  }
  .logo {
    flex-basis: 50%;
    height: fit-content;
    text-align: right;
    height: 200px;
  }
  .title {
    flex-basis: 50%;
    text-align: left;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  h2 {
    padding: 0;
  }
  img {
    margin-right: 80px;
  }
  .contact {
    margin-top: 80px;
    flex-basis: 100%;
    height: fit-content;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0.7;
  }
}
@keyframes show{
    100%{
        opacity: 1;
    }
}