@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 {
    display: flex;
    flex-direction: column;
    overflow: visible;
    width: 100%;
    height: 91.5%;
    background-color: #0e192c;
    align-items: center;
}

.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	;
}

.h1 {
    margin-top: 50px;
    font-size: 5em;
    font-family: orbitron;
    color: #ffffff;
}

.p {
    margin-top: 15px;
    font-size: 1em;
    font-family: spacemono;
    color: #A3BFFA;
    text-align: center;
}

.home {
    border-radius: 6px;
    height: 50px;
    width: 150px;
    margin-top: 20px;
    font-size: 2em;
    font-family: orbitron;
    border: none;
    background-image: linear-gradient(135deg, #009fb1, #8a97be96);
    cursor: pointer;
}