﻿@font-face {
  font-family: 'motiva';
  src: url('../font/MotivaSansRegular.woff.ttf') format('truetype');
}

body {
  font-family: 'motiva';
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  overflow: hidden;
}

.animated-background {
  background: linear-gradient(-45deg, #00446b, #a44007);
  animation: gradient 10s ease infinite;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  padding: 10px 0;
  z-index: 1;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 0 10px;
  transition: background 0.3s;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.logo-container img {
  max-width: 300px;
  height: auto;
}

@media (min-width: 990px) and (min-height: 230px) {
  .logo-container img {
    max-width: 500px;
  }
}

@media (min-width: 1400px) and (min-height: 230px) {
  .logo-container img {
    max-width: 700px;
  }
}

@media (max-height: 300px) {
  .logo-container img {
    margin-top: 100px;
  }
}

/* Navbar 2 */
nav {
  position: absolute !important;
  left: 0;
}

.nav-container img {
  border-radius: 10px;
}

.h1-cust {
  color: transparent;
  user-select: none;
  font-size: 14px;
}