*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    background-color: #589291;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
    overflow: hidden;
}

main {
    width: 100%;
    max-width: 72rem;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* background circles */
.circle{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ae3608;
    position: absolute;

}

/* Card */
#card {
    width: 100%;
    max-width: 36rem;
    height: auto;
    display: block;
    margin: 0 auto;
    z-index: 1;
}

/* Destop View */
@media (max-width: 48rem) {
    html {
        font-size: 14px;
    }

    #card {
        max-width: 30rem;
    }
}

/* Mobile View */
@media (max-width: 30rem) {
    html {
        font-size: 12px;
    }

    #card {
        max-width: 24rem;
    }

    main {
        padding: 1rem;
    }
}
