
:root {
    --dark-blue: #002e49;
    --blue : #005694;
}

body {
    background-color: var(--dark-blue);
}

.orbitron-bavarian-technik-font {
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
  }

.page-wrapper {
    height: 100svh;
    position: relative;
    overflow: clip;
    padding: 1.5rem 3rem;
}

.photo_main {
    position: absolute;
    margin: auto auto 0;
    vertical-align: middle;
    display: inline-block;
    max-width: 100%;
    inset: 0%;
    object-fit: contain;
    z-index: 2;
    scale: 70%;

    animation-duration: 3s;
    animation-name: grow-in;

    @media screen and (max-width: 991px) {
        margin-bottom: auto;
        padding-top: 0;
    }

    @media screen and (max-width: 767px) {
        width: 120%;
        height: 100%;
    }

    @media screen and (max-width: 479px) {
        height: 80svh;
    }
}

@keyframes grow-in {
    from {
      scale: 100%;
    }
  
    to {
      scale: 70%;
    }
  }

  .wrapper {
    z-index: 1;
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
  }

.h1_main {
    font-size: 14vw;
    color: white;
    margin: 0;
}
.h1_sub_main {
    font-size: 10vw;
    text-align: right;
    color: #009ada;
    margin-top: -6%;
}


  