@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Metrophobic&display=swap');

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

li, a, button {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #1E1E1E;
    text-decoration: none;
    letter-spacing: 0.15em;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 3%;
    background-color: #FBE7CD;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.nav_links {
    list-style: none;
    display: flex;
    gap: 5vw;
}

.nav_links li {
    display: inline-block;
}

.nav_links li a {
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover {
    color: #5788C0;
}

header .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.cta {
    margin-left: auto;
}

button {
    padding: 9px 25px;
    background-color: #FBE7CD;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

button:hover {
    background-color: #5788C0;
}

body {
    margin: 0;
    background-color: #5788C0;
}

h1 {
    font-family: "Metrophobic", sans-serif;
    font-weight: 400;
    font-size: 48px;
    color: #FBE7CD;
    text-decoration: none;
    -webkit-text-stroke: 1px #FBE7CD;
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 20px; /* Push title below navbar */
    margin-bottom: 40px;
}

.wrapper {
    width: min(900px, 100% - 3rem);
    margin-inline: auto;
    padding-top: 80px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #FBE7CD;
}

th, td {
    padding: 1rem;
}

th {
    text-align: left;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #1E1E1E;
    text-decoration: none;
}

td {
    text-align: left;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #1E1E1E;
    text-decoration: none;
}

tr:nth-of-type(2n) {
    background: #f8eee0;
}

.table_container {
    max-width: 100%;
    overflow-x: auto;
}

.special-link {
    color: #5788C0;
    font-size: 16px;
    letter-spacing: 0.1em;
    transition: all 0.3s ease 0s;
}

.special-link:hover {
    font-size: 16px;
    color: #141e29; /* Change color on hover */
}

.stars {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.star1 {
    max-width: 250px;
}

.star2 {
    max-width: 250px;
}

.star3 {
    max-width: 250px;
    rotate: 90deg;
}

.star4 {
    max-width: 250px;
    rotate: 90deg;
}

@media (max-width:1250px) {
    .star1, .star4, .star3, header .logo {
        display: none;
    }
}