@charset "utf-8";
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 15px 30px;
    color: white;
}
body {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: small;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	line-height: normal;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

/* Hide Hamburger on Desktop */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background-color: white;
}

/* Mobile Responsiveness (Screens 768px and under) */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none; /* Hide links by default */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #000;
    }
    
    /* Show Hamburger on Mobile */
    .hamburger {
        display: flex; 
    }
    
    /* Display the menu when "active" class is applied */
    .nav-links.active {
        display: flex;
    }
}

.container {
  display: grid;
  place-items: center;  /* Centers all rows in the grid container */
  height: 100vh;
}

.row-container {
  display: flex;
  justify-content: center; /* Horizontally centers the row contents */
  align-items: center;     /* Vertically centers the row contents */
}

.column {
  padding: 0;
  margin: 0;
}
