   body {
    margin: 0 auto;
    text-align: center;
    height: 100vh;
    font-family: "Ubuntu", sans-serif;
    background-color: #001207d1;
    color: white;
}

p {
    font-size: 22px;
    padding: 0px 10px;

}

nav {
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}

.foot_nav {
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}

a {
    text-decoration: none;
    color: white;
    border-bottom: solid 1px #2e3d34;
    padding-bottom: 2px;
}

a:hover {
    color: #eb7e44;
    border-bottom: solid 1px #eb7e44;
}

.main_logo {
    width: 600px;
}

span {
    margin-top: 20px;
    margin-bottom: 40px;
}

.btn_main {
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    padding: 10px 40px;
    background-color: #eb7e44;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    border: solid 1px #eb7e44;
}

.btn_main:hover {
    
    border: solid 1px #eb7e44;
    background-color: #2e3d34;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.timer_position {
    display: flex;
    justify-content: center;
}

.timer_text {
    margin-right: 20px;
}

.afterCounter {
    padding-bottom: 20px;
}

/* test */

.test_btn {
    margin-top: 100px;
    margin-bottom: 40px;
}

.text_two {
    max-width: 600px;
    margin: 0 auto;
}

h1 {
    margin-top: 100px;
}

.two_bg {
    background-color: rgb(240, 248, 255);
}

.container_card {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.title_two {
    color: #2e3d34;
    padding: 40px 0px;
}

.card_position {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    gap: 40px;
}

.card_main {
    border: solid 1px #2e3d34;
    border-radius: 10px;
    padding: 20px;
}

.card_img {
    width: 100px;
}

.card_title {
    color: #2e3d34;
}

.card_text {
    color: rgba(0, 0, 0, 0.877);
}

.advant_check {
    display: flex;
}

.advant_img {
    width: 40px;
    margin-right: 20px;
}

.advant_text {
    text-align: left;
    margin: 0px;
    font-size: 16px;
    border-bottom: solid 1px rgb(240 248 255 / 18%);
    padding-bottom: 10px;
}

.container_advant {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
    padding: 10px;
}

h3 {
    font-size: 18px;
    text-align: left;
}

section {
    padding: 10px;
}

footer {
    background-color: #00100c;
    padding: 10px 0;
    margin-top: 40px;
}

@media screen and (max-width: 600px) {
    .main_logo {
        width: 100%;
    }

    h1 {
        margin-top: 10px!important;
        margin-bottom: 20px;
        font-size: 20px;
    }

    .btn_text {
        padding: 10px 20px;
        font-size: 16px;
    }

    .card_position {
        grid-template-columns: auto!important;
        gap: 20px!important;
    }

    .title_two {
        color: #2e3d34;
        padding: 0px!important;
        padding-top: 20px!important;
    }

    .text_two {
        font-size: 16px;
    }
    
    .test_btn {
        margin-top: 44px!important;
        margin-bottom: 40px;
    }
}

