@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: 200%;
    background-color: #0e192c;
    align-items: flex-start;
}

.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: 20px;
    font-size: 3em;
    font-family: orbitron;
    color: #ffffff;
    margin-left: 15px;
}

.h2 {
    margin-top: 20px;
    font-size: 1.5em;
    font-family: orbitron;
    color: #ffffff;
    margin-left: 50px;
}

.p {
    margin-top: 15px;
    font-size: 1em;
    font-family: spacemono;
    color: #A3BFFA;
    text-align: left;
    margin-left: 50px;
}
.news1 {
    margin-top: 20px;
    margin-left: 25px;
    margin-right: 25px;
    padding: 30px;
    border: 2px solid rgb(0, 121, 142);
    border-radius: 20px;
}

.news2 {
    margin-top: 60px;
    margin-left: 25px;
    margin-right: 25px;
    padding: 30px;
    border: 2px solid rgb(0, 121, 142);
    border-radius: 20px;
}

.image {
    width: 500px;
    margin-left: 900px;
    margin-top: -400px;
    margin-right: 0;
    border-radius: 20px;
    border: 2px solid rgb(0, 145, 99);
}

.tag {
    margin-top: 5px;
    font-size: 1em;
    font-family: orbitron;
    color: #ffffff;
    text-align: left;
    margin-left: 50px;
}

.link {
    margin-left: 50px;
    font-family: orbitron;
    text-decoration: dashed;
    color: aqua;
}

.link:hover {
    color: rgb(0, 193, 61);
}

