*{
    padding: 0;
    list-style: none;
    text-decoration: none;
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
  }

  #maint_cont{
    position: relative;
    height: 65%;
    width: auto;
  }

  #maint_logo{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: auto;
    transform: translate(-50%,-50%);
    z-index: 2000;
  }

  #maint_top_stars{
    position: absolute;
    top: 0%;
    left: 50%;
    width: 105%;
    height: auto;
    transform: translateX(-50%);
    z-index: 100;
    opacity: 0.25;
  }

  #maint_bot_logo{
    position: absolute;
    bottom: 100px;
    left: 50%;
    width: 25px;
    height: auto;
    transform: translateX(-50%);
    z-index: 2000;
  }

  #stars_background_img{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: auto;
    opacity: 0.3;
  }


.header{
    position: relative;
    width: 100%;
    height: 60px;
    background-color: white;
}

.header img{
    position: absolute;
    top: 50%;
    left: 22.5%;
    height: 38px;
    width: auto;
    transform: translate(-50%,-50%);
}

#head_big_logo{
    display: inherit;
}

#head_small_logo{
    display: none;
}


@media screen and (max-width: 750px){
    
    
    .icon_cont{
        position: relative;
        width: 80%;
        height: 80px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: none;
    }
    
    .icon_cont img{
        width: auto;
        height: 30px;
        opacity: 0.35;
        transition: 0.2s ease-in-out;
        cursor: pointer;
    }
    
    .icon_cont img:hover{
        opacity: 1;
    }

    #head_big_logo{
        display: none;
    }

    #head_small_logo{
        display: inherit;
    }

    .header{
        position: relative;
        width: 100%;
        height: 60px;
        background-color: white;
    }

    .header img{
        position: absolute;
        top: 60%;
        left: 50%;
        height: 30px;
        width: auto;
        transform: translate(-50%,-50%);
    }

}