/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

/* Landing Page Styles */
.landing-page {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('kryolan_blog_top-image_Chatelaine_2x.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.content {
    position: relative;
    z-index: 1;
    color: white;
}

.title {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInDown 1.5s ease;
}

.subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    animation: fadeInUp 1.5s ease;
}

.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 50px;
    animation: bounceIn 2s ease infinite;
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

/* Login button specific styles */
.login-container {
    position: absolute;
    top: 20px;
    right: 20px;
}

.btn-login {
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 50px;
    animation: bounceIn 2s ease infinite;
}

/* Keyframes for animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}
