* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.container {
    width: 100%;
    max-width: 80vw;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 70px ;
}

.top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    width: 100%;
    margin: auto;
    max-width: 1140px;
    border-bottom: 1px solid #c4c4c4;
    margin-bottom: 20px;
    padding-bottom: 50px;
}

.logo-img {
    width: 300px;
}

.top-title {
    text-align: center;
    color: #afafaf;
    font-family: "Montserrat", Sans-serif;
    font-size: 29px;
    font-weight: 500;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 35px;
    letter-spacing: 0px;
    word-spacing: normal;
    width: 100%;
    max-width: 1140px;

}

.top-button {
    background-color: #00B419;
    cursor: pointer;
    border-radius: 3px;
    font-weight: 600;
    margin-top: 20px;
    color: #e2e2e2;
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    padding: 12px 24px;
    fill: #fff;
    text-align: center;
    transition: all .3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-content {
    max-width: 1150px;
    width: 100%;
    margin: auto;
    text-align: center;
    border-bottom: 1px solid whitesmoke;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.main-title {
    color: #F47BFF;
    font-size: 40px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
}

.main-description {
    font-size: 16px;
    font-weight: 400;
    word-spacing: 1px;
    line-height: 25px;
}

.join-content {
    display: grid;
    grid-template-columns: minmax(200px, 500px) minmax(200px, 500px);
    width: 100%;
    max-width: 80vw;
    margin: auto;
    justify-content: space-between;
    margin-bottom: 30px;
    column-gap: 30px;
}

.card {
    text-align: center;
    background-color: #35353F;
    /* padding: 30px 70px; */
    border: 2px solid white;
    width: 100%;
    /* max-width: 500px; */
    margin: auto;
    padding-top: 30px;
}

.card-price {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 30px;
}

.join-btn {
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    color: white;
    border: none;
    margin-bottom: 50px;
}

.card-bottom-content {
    background-color: #9442D9;
    width: 100%;
    padding: 30px;
    font-weight: 200;
}

.card-bottom-content h3 {
    font-weight: 400;
}

.bottom-content {
    display: grid;
    grid-template-columns: minmax(200px, 500px) minmax(200px, 500px);
    width: 100%;
    max-width: 1000px;
    margin: auto;
    justify-content: space-around;
    margin-top: 30px;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1140px;
    margin: auto;
    justify-content: space-between;
    overflow-wrap: break-word;
    flex-wrap: wrap;
    padding: 10px;
    margin-bottom: 30px;
}

.bot-content {
    text-align: center;
    width: 100%;
    max-width: 250px;
}

.bot-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #F47BFF;
}

.bot-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    color: #adadad;
}

.copyright {
    width: 100%;
    max-width: 1140px;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    font-style: bold;
    margin-bottom: 100px;
    border-bottom: 1px solid white;
    padding-bottom: 30px;
}

@media screen and (max-width:1025px){
    .container {
        max-width: 80vw;
    }

    .join-content {
        grid-template-columns: minmax(200px, 350px) minmax(200px, 350px);
    }

    .bottom-content {
        max-width: 800px;
    }

    .bot-content {
        max-width: 150px;
    }
    .bot-content h2 {
        font-size: 18px;
    }
    .bot-content p{
        font-size: 18px;
    }
}

@media screen and (max-width:769px) {
    .container {
        max-width: 85vw;
    }

    .main-title {
        font-size: 30px;
    }
    
    .main-description {
        font-size: 16px;
    }

    .join-content {
        grid-template-columns: minmax(200px, 300px) minmax(200px, 300px);
    }

    .card-bottom-content {
        font-size: 14px;
    }

    .bottom-content {
        display: grid;
        grid-gap: 10px 55px;
    }

    .bot-content {
        text-align: center;
        max-width: none;
    }
}

@media screen and (max-width:765px) {

    .join-content {
        grid-template-columns: minmax(200px, 700px);
        grid-row-gap: 50px;
    }
    .bot-content h2 {
        font-size: 30px;
    }
}

@media screen and (max-width:426px) {
    
    .container {
        max-width: 90vw;
    }

    .bottom-content {
        grid-template-columns: minmax(200px, 200px);
        max-width: 90vw;
        justify-content: center;
    }
    .bot-content {
        width: 100%;
        margin: auto;


    }
}