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

body {
    background-color: #1a1a5e;
    font-family: 'Noto Sans', sans-serif;
    font-weight: bold;
    color: #f7f7f7;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.header {
    height: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 94);
    top: 0;
    position: fixed;
    z-index: 9998;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 0 15px;
}

.header img {
    width: auto;
    height: 60px;
    position: relative;
    padding-right: 20px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    position: relative;
}

.nav-link h1 {
    font-size: 18px;
    margin: 0;
    padding: 0;
    text-align: right;
    color: #f7f7f7;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #f7f7f7;
    left: 50%;
    bottom: -5px;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.main {
    color: #a6a6a6;
}

.secondary {
    color: #fff;
}

.tertiary {
    color: #ff3131;
}

span {
    color: #ff3131;
}
