*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Overpass", sans-serif;
}

p{
    font-size: 15px;
}

body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: hsl(216, 12%, 8%);
}

main{
    width: 25%;
    background-color: hsl(213, 19%, 18%);
    min-height: 200px;
    height: fit-content;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.circle-top{
    width: 50px;
    height: 50px;
    background-color: hsl(210, 15%, 24%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.main{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main h1{
    color: #fff;
}

.main p{
    color: hsl(217, 12%, 63%);
    font-size: 15px;
    line-height: 1.5rem;
}

.btn{
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: medium;
    letter-spacing: 3px;
    background-color: hsl(25, 97%, 53%);
    transition: .4s ease;
}

.btn:hover{
    background-color: #fff;
}

.mark{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 10px;
}

.marker{
    height: 60px;
    width: 60px;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: 0.2s ease;
    background-color: hsl(210, 15%, 24%);
    color: hsl(217, 12%, 63%);
    font-weight: 800;
    font-size: medium;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marker:hover{
    background-color: hsl(25, 97%, 53%);
    color: hsl(216, 12%, 8%);
}

.thankyou{
    display: none;
    align-items: center;
    justify-content: center;
}

.ativado{
    background-color: #fff;
    color: black;
}

.error{
    display: none;
    justify-content: center;
    align-items: center;
}

.error p{
    color: rgb(184, 25, 25);
}

.bottom{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.top{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bottom h1{
    color: #fff;
}

.bottom p {
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    color: hsl(217, 12%, 63%);
    line-height: 1.5rem;
}

.top p{
    color: hsl(25, 97%, 53%);
    font-weight: 200;
    text-align: center;
}

.a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 10px 20px;
    background-color: hsl(212, 16%, 16%);
}

@media only screen and (max-width: 1500px){
    main{
        width: 30%;
    }
}

@media only screen and (max-width: 1120px){
    main{
        width: 40%;
    }
}
@media only screen and (max-width: 900px){
    main{
        width: 50%;
    }
}
@media only screen and (max-width: 720px){
    main{
        width: 60%;
    }
}

@media only screen and (max-width: 620px){
    main{
        width: 70%;
    }
}
@media only screen and (max-width: 520px){
    main{
        width: 80%;
    }
}

@media only screen and (max-width: 450px){
    main{
        width: 90%;
    }

    .marker {
        width: 50px;
        height: 50px;
    }
}