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

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    line-height: 1.6;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
}

.auth-links {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: flex-end;
}

.auth-links a {
    text-decoration: none;
    color: #0077cc;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to right, #e0f7fa, #e1bee7);
}

.hero h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;

}

.hero p {
    font-size: 1.1rem;
    color: #555;
    margin: 10px 0;
}

.social-media {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 15px;
}

.social-media a img {
    width: 40px;
    height: 40px;
}
html{
    scroll-behavior: smooth;
}
@media(max-width:601px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .auth-links {
        flex-direction: row;
        align-items: flex-end;
        margin-top: 10px;
    }
}

.container {
    background: linear-gradient(135deg, #ffffffcc, #f0f0f080);
    border-radius: 20px;
    padding: 15px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin: 15px auto;
    max-width: 95%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
}

.logo {
    background: linear-gradient(to right, #0077cc, #00bcd4);
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 123, 255, 0.2);
    display: inline-block;
}

.logo img {
    height: 75px;
    vertical-align: middle;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    border: none;
    border-radius: 50%;
}

.logo img:hover {
    transform: scale(1.0s);
}