body {
    margin: 0 ;
    font-family: "Segoe UI";
    background-image: url('../assets/Teaser_Image_test_04.jpg');
    background-size: cover;
    background-position: 50% 20%;
}

.countdown {
    color: white;
    font-size: larger;
    font-weight: 500;
    margin-top: 1rem;
    padding: 1rem 2rem;
    border-top: 1px solid white;
    animation: fadeInAnimation ease 4s;
    animation-iteration-count: 1;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.main-content {
    content: '';
    width: 100%;
    height: calc(100% - 5rem);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: column;
}

.main-container {
    margin-top: 5%;
    margin-right: 10%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.live-launch-btn {
    text-decoration: none;
    background-color: #03cab6;
    color: white;
    font-size: larger;
    font-weight: 500;
    border-radius: 10px;
    padding: 1rem 2rem;
    width: fit-content; 
    transition: all 300ms ease;
    transition-property: background-color, box-shadow;
    
}

.live-launch-btn:hover {
    background-color: #00e9d2;
    cursor: pointer;
    box-shadow: 10px 10px 25px -17px rgba(0,0,0,0.75);
}

.home-text-container {
    /* margin-top: 5%;
    margin-right: 10%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInAnimation ease 4s;
    animation-iteration-count: 1;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.payments-help-container p {
    color: white;
    font-size: x-large;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

.home-about-container {
    color: white;
    font-size: larger;
    width: 15rem;
    height: 10rem;
    display: flex;
    align-items: center;
    text-align: center;
}

.home-about-container p {
    margin: 0;
}

.welcome-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 10rem;
    text-align: center;
    border-bottom: 1px solid white;
}

.welcome-container h1, .welcome-container h2 {
    color: white;
    font-weight: 400;   
    margin-top: 0;
}

.welcome-container h1 {
    font-size: 3rem;
    margin-bottom: .5rem;
}

.welcome-container h2 {
    font-size: 2rem;
}

.home-about-container p {
    font-size: larger;
}


.playstore-badge {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.playstore-badge a {
    color: #03cab6;
    text-decoration: none;
    font-size: larger;
}

.playstore-badge a:hover {
    color: #03ae9d;
}

.qrcode {
    background-color: white;
    padding: .5rem;
    border-radius: 10px;
    height: 8rem;
    width: auto;
}

.playstore-badge a img {
    width: 11rem;
    height: auto;
}

/* responsive design */

@media only screen and (max-width: 1025px) {
    .main-content {
        align-items: flex-end;
        flex-direction: column;
        justify-content: flex-start;
    }

    .home-about-container {
        margin-top: 2rem;
        border-radius: 10px 0 0 10px;
        width: 18rem;
        padding: 0 1rem 0 1rem;
    }

    .home-about-container p {
        width: inherit;
    }

    .welcome-container {
        margin-top: 2rem;
        height: fit-content;
        align-items: center;

    }

    .welcome-container h1 {
        margin-bottom: .5rem;
        padding-top: 1rem;
    }

    .welcome-container h2 {
        margin: 0;
        padding-bottom: 1rem;
    }
}

@media only screen and (max-width: 981px) {
    .playstore-badge {
        position: static;
        margin-top: 2rem;
        margin-right: 12%;
    }
}

@media only screen and (max-width: 426px) {

    .home-text-container, .main-container {
        margin: 0;
    }

    .playstore-badge { 
        margin-right: 0;
    }

    .main-content {
        align-items: center;
    }

    .home-about-container, .welcome-container {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .welcome-container {
        height: fit-content;
        padding: 0 3rem 0 3rem;
    }

    .welcome-container h2{
        margin-bottom: 2rem;
    }

    .home-about-container {
        width: fit-content;
    }

    .playstore-badge {
        position: static;
    }
}

@media only screen and (max-height: 720px) {

    .main-content {
        height: max-content;
    }

    .playstore-badge {
        margin-top: 2rem;
        position: static;
        /* margin-right: 8.6%; */
    }
}

/* end of responsive design */