/* Header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    background-color: transparent;
}

header a:hover {
	text-decoration: underline;
	cursor: pointer;
}

.logo, nav a {
    color: #111111;
    font-weight: 500;
    font-size: 1.375rem;
    text-shadow: 1px 1px  rgba(255, 255, 255, 1);
}

a {
    text-decoration: none;
    color: black;
    flex-shrink: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* Header Responsive styles */

@media (min-width: 767px) {
    .logo, nav a {
        font-size: 1.375rem;
    }

    .card:nth-child(2n-2) {
        position: relative;
        top: 200px;
        top: 300px; /* CHANGE THIS for V2 */
    }

    h1{
        font-size: 4.6vw;
        font-size: 4.5rem;
        line-height: 120%;
        font-weight: 600;
        color: #111111;
        width: max-content;
    }

    nav {
        gap: 20px;
    }
}
