@import url("https://fonts.googleapis.com/css?family=Poppins:400,800");
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,800");

html::-webkit-scrollbar {
    display: none;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.banner {
    color: black;
    text-align: center;
}


.home-container {
    display: grid;
    grid-template-rows: 15% 85%;
    align-items: center;
    justify-items: center;
    padding: 20px;
    width: 100%;
}

.home-title {
    width: 95%;
    display: grid;
    grid-template-columns: 6% 92%;
    justify-items: right;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s forwards 0.5s ease-in;
}


.home-content {
    width: 100vw;
    height: 100%;
    display: grid;
    grid-template-columns: 40% 1fr;
    align-items: center;
    justify-items: center;
}

.home-content-main {
    display: grid;
    grid-template-rows: 1fr 1fr;
    height: 50%;
    align-items: center;
}

.home-content-text {
    color: white;
    font-size: 5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    opacity: 0;
    animation: fadeIn 1s forwards 1s ease-in;
}

.home-img {
    opacity: 0;
    animation: fadeIn 1s forwards 0.8s ease-in;

}

.countdown {
    width: 21rem;
    font-size: 2em;
    color: #000;
    background: #FFB81C;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    padding: 10px 20px;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s ease-in;
}

.info-section {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
}



footer {
    background-color: #004e92;
    color: white;
    text-align: center;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.bug-report-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
}

@media (max-width: 800px) {

    /* Center the entire content of home-container */
    .home-container {
        padding: 10px;
        justify-content: center;
    }



    /* Adjusting the home-title for stacking */
    .home-title {
        display: flex;
        /* Center vertically */
        align-items: last baseline;
        gap: 15rem;
        width: 95%;
        height: 12rem;
        padding: 10px;
        /* Add space between logo and navbar */
    }

    /* Hide the vector image on mobile */
    .home-img {
        display: none;
    }

    .navbar {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .home-content {
        grid-template-columns: 1fr;
    }

    .home-content-text {
        text-align: center;
        font-size: 4rem;
    }

    .home-content-main {
        justify-items: center;
    }

    /* Smaller font and padding for countdown */
    .countdown {
        font-size: 1.2em;
        padding: 8px 16px;
    }

}