* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
}

.navbar {
    background-color: #ffffff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.monkey-logo {
    width: 150px;
    height: 150px;
    background-color: white;
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #D2691E;
}

.content-wrapper {
    text-align: center;
    max-width: 600px;
}

.attractive-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

.join-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #CD853F;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.join-button:hover {
    background-color: #B8860B;
    transform: translateY(-2px);
}

.join-button i {
    font-size: 1.2rem;
}

.footer {
    background-color: #D2691E;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.instagram-link {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: #FFD700;
    transform: translateY(-2px);
} 