@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

* {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
}

body {
    margin: 0;
    background-color: #000000;
}

nav {
    background: rgb(10,17,40);
    background: linear-gradient(90deg, rgba(10,17,40,1) 0%, rgba(0,31,84,1) 25%, rgba(3,64,120,1) 50%, rgba(39,201,247,1) 90%);
    padding: 5px;
    position: fixed; /* Add position: fixed to keep the navigation bar fixed */
    width: 100%;
    top: 0;
    z-index: 100; /* Add a higher z-index value to keep it on top */
}

nav ul {
    display: flex;
    justify-content: space-evenly;
    list-style: none;
}

nav  ul a {
    color: #FFFFFF;
    font-size: 18px;
    text-decoration: none;
    padding: 10px;
    display: block;
}

nav a:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

header {
    text-align: center; /* Center align the content */
    max-height: 900px; /* Set a fixed height for the header */
}

header img {
    width: 100%;
    max-height: 1000px;
    min-width: 1333px;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%);
}

header h1 {
    color: #FFFFFF;
    transform: translate(0% , 200%);
    font-size: 128px;
}

.hide-logo {
    display: none; /* Hide the logo */
}

.short-nav {
    margin-left: 0%;
}
nav img {
    float: left;
    height: 60px;
    margin-left: 50px;
    margin-top: 5px;
}

.moto {
    text-align: center;
    font-size: 24px;
    border: #FFFFFF solid;
    padding: 10px;
    width: 40%;
    margin-left: 30%;
    margin-top: 150px;
    transform: translate(0%, 700px);
}

.moto b {
    font-size: 48px;
}

#article-1 {
    transform: translate(0%, 800px);
}

#article-1 img {
    opacity: 50%;
    width: 100%;
    height: 800px;
    object-fit: cover;
}

#article-1 p {
    color: #FFFFFF;
    position: relative;
    left: 25%; 
    width: 50%;
    top: -600px;
    font-size: 24px;
    padding: 25px;
    border: #FFFFFF solid;
    text-align: justify;
    background: rgba(0, 0, 0, 0.75);
}

#article-2 img {
    opacity: 50%;
    width: 100%;
    height: 800px;
    object-fit: cover;
}

#article-2 p {
    color: #FFFFFF;
    position: relative;
    left: 25%; 
    width: 50%;
    top: -600px;
    font-size: 24px;
    padding: 25px;
    border: #FFFFFF solid;
    text-align: justify;
    background: rgba(0, 0, 0, 0.75);
}
