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

html, body {
    height: 100%;
}

body {
    background: #f4f4f4;
    color: #333;
}

main {
    min-height: 100%;
}

.header {
    text-align: center;
    padding: 40px 20px 10px;
}

.logo {
    font-size: 32px;
    font-weight: bold;
}

.logo span {
    color: #F05A28;
}

.tagline-container {
    width: max-content;
    margin: auto;
    margin-top: 10px;
}

.typewriter,
.typewriter2 {
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #333;
    margin: 5px auto;
    display: inline-block;
}

.typewriter {
    color: #333;
    animation: typing 4s steps(60, end) forwards, blink 0.7s step-end infinite;
    width: 0;
}

.typewriter2 {
    color: #666;
    animation: typing2 4s steps(60, end) 4.5s forwards, blink 0.7s step-end infinite;
    width: 0;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes typing2 {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.login-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 24px;
    border: 2px solid #333;
    border-radius: 40px;
    font-size: 16px;
    background-color: white;
    cursor: pointer;
    transition: 0.3s ease;
    color: #000;
    text-decoration: none;
}

.login-btn:hover {
    background-color: #333;
    color: #fff;
}

.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px auto;
    gap: 20px;
    max-width: 1000px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    width: 220px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card i {
    font-size: 30px;
    color: #f16823;
    margin-bottom: 15px;
}

.card h4 {
    font-weight: bold;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #666;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    padding: 20px 100px;
    background: linear-gradient(135deg, #f16823, #8921aa);
    color: white;
}

.footer .social-icons i {
    margin-right: 15px;
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.footer .social-icons a {
    display: inline-block;
    text-decoration: none;
}

.footer .social-icons a:hover i {
    color: #ccc;
}
