* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: black;
    cursor: url('assets/skeleton-19-svgrepo-com.svg'), auto;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 10px 20px;
}

.nav-left, .nav-right {
    flex: 1;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-left ul, .nav-right ul {
    display: flex;
    list-style-type: none;
}

.nav-left li, .nav-right li {
    margin: 0 10px;
}

.nav-left a, .nav-right a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    transition: background-color 0.3s;
}

.nav-left a:hover, .nav-right a:hover {
    background-color: #575757;
    border-radius: 4px;
}

.logo {
    max-height: 100px;
}

.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.hero img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    animation: float 3s ease-in-out infinite;
    margin-top: -3rem;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

.enter-button {
    position: absolute;
    top: 70%; /* Adjust this value to move the button higher or lower */
    padding: 20px 40px;
    font-size: 20px;
    color: #fff;
    background-color: red;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 1;
    cursor: url('assets/bone-svgrepo-com.svg'), auto;
    margin-top: 4rem;
}

.enter-button:hover {
    background-color: rgb(255, 84, 84);
}

.hidden {
    display: none;
}

.fade-out {
    animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.shop {
    margin: 0; /* Ensure no margin */
    padding: 0; /* Ensure no padding */
}

.sponsors {
    font-family: "Pirata One", system-ui;
  font-weight: 400;
  font-style: normal;

    padding: 0; /* Adjusted padding */
    text-align: center;
    margin: 0; /* Ensure no margin */

}

h2 {
    font-family: "Pirata One", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 60px;

    padding: 0; /* Adjusted padding */
    text-align: center;
    margin: 0; /* Ensure no margin */
}

.sponsors h2 {
    margin: 20px 0; /* Adjusted margin */
    color: #333;
}

.sponsor-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    
}

.sponsor-list li {
    margin: 10px;
    cursor: pointer;
}

.sponsor-list a {
    text-decoration: none;
    color: #333;
    display: block;
    text-align: center;
    cursor: pointer;
    
}

.sponsor-list img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
    cursor: pointer;
}

.sponsor-list span {
    display: block;
    font-size: 25px;
    cursor: pointer;
}

.footer {
    background-color: black;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
}

.social-links {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.social-link i {
    margin-right: 8px;
}

.social-link:hover {
    color: #ff4081;
}

@media (max-width: 768px) {
    .hero {
        height: 50vh;
        padding-top: 50px; /* Adjust this value for smaller screens */
    }

    .sponsor-list {
        flex-direction: column;
        align-items: center;
    }

    .sponsor-list img {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
        padding-top: 25px; /* Adjust this value for smaller screens */
    }
}