@font-face {
  font-family: orbitron;
  src: url(Fonts/orbitron.ttf);
}
@font-face {
  font-family: spacemono;
  src: url(Fonts/space-mono.ttf);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

.container {
    overflow: visible;
    width: 100%;
    height: 91.5%;
    background-color: #0e192c;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #1f3353;
    color: #ffffff;
}

.logo-title {
    font-family: orbitron;
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.logo-title img {
    height: 40px;
    margin-right: 10px;
}

.title {
    font-size: 1.5em;
    white-space: nowrap;
}

.menu button {
    font-family: spacemono;
    background: none;
    border: none;
    color: white;
    margin-left: 15px;
    font-size: 1em;
    cursor: pointer;
}

.menu button:hover {
    color: #A3BFFA	;
}

.holder1 {
    position: relative;
}

.shadowbox1 {
    position: absolute;
    top: 100px;
    left: 3px;
    width: 120vh;    
    height: 83vh;
    background-color: #0011c9ba;
    clip-path: polygon(0 0, 100% 0, 65% 100%, 0% 100%);
    filter: blur(20px);
    opacity: 0.4;
    z-index: 0;
    margin-top: -60;
}

.banner1 {
    background-color: #102855 ;
    width: 120vh;
    height: 83vh;
    top: 25px;
    left: 0;
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 65% 100%, 0% 100%);
}

.app-text {
    margin-top: 150px;
    margin-left: 15px;
    width: 50%;
    float: left;
}

.app-text h1 {
    font-family: orbitron;
    font-size: 43px;
    width: 640;
    position: relative;
    margin-left: 40px;
    color: #ffffff ;
}

.app-text p {
    font-family: spacemono;
    width: 650px;
    font-size: 17px;
    margin: 20px 0 30px 40;
    line-height: 25px;
    color: #A3BFFA ;
}

.btn {
    margin-left: 4%;
    position: absolute;
    text-decoration: none;
    font-size: 15px;
    color: #000000;
    border: 2px solid #1c2d48;
    border-radius: 20px;
    background-image: linear-gradient(135deg, #009fb1, #8a97be96);
    background-origin: border-box;
    background-clip: content-box,border-box;
    cursor: pointer;
}

.btn:hover {
    color: #1900ff;
}

.btn span {
    display: block;
    padding: 8px 22px;
}

.holder2 {
    position: relative;
    left: 570px;
}

.shadowbox2 {
    position: absolute;
    top: 100px;
    left: 20px;
    width: 133vh;
    height: 83vh;
    background-color: #2b64ffb0;
    clip-path: polygon(32% 0, 100% 0, 100% 100%, 0% 100%);
    filter: blur(20px);
    opacity: 0.4;
    z-index: 0;
    margin-top: -60;
}

.banner2 {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 83px;
    width: 133vh;
    height: 83vh;
    gap: 20px;
    background-color: #19263b;
    justify-content: center;
    align-items: center;
    clip-path: polygon(32% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
    margin-top: -60;
}

.img1 {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 10px auto;
    display: block;
    position: relative;
}

.bottomrow {
    display: flex;
    justify-content: center;
    margin-left: 50px;
    gap: 20px;
    margin-top: 0;
}


.img2,
.img3 {
    width: 100%;
    max-width: 400px;
    height: 300px;
    position: relative;
}


