@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
button {
    font-family: "Oswald", sans-serif;
}




main {
    text-align: center;
    padding: 30px 10px;
}


h1 {
    color: red;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

h1 span {
    color: #1974fd;
    font-family: "Oswald", sans-serif;
}


img.logo {
    width: 200px;
    height: 200px;
    border-radius: 50px;
    object-fit: cover;
    margin-bottom: 20px;
}

.recover {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}
.recover img {
    width: 25px;
}

.name {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}


a {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    font-weight: 600;
    background-color: #1974fd;
    margin: 0 auto;
    padding: 15px 15px;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 25px;
}

a div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #ffffff;
    margin-right: 8px;
}
a img {
    width: 20px;
}



.join {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #383838;
    margin-bottom: 20px;
}
.join img {
    width: 25px;
    margin-right: 10px;
}


ul li {
    list-style: none;
    font-size: 18px;
    font-weight: 500;
    color: #494949;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

li img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}



@media (max-width: 600px) {
    h1 {
        font-size: 30px;
    }
    img.logo {
        width: 160px;
        height: 160px;
    }

    .recover {
        font-size: 13px;
    }

    .name {
        font-size: 25px;
    }
    a {
        font-size: 18px;
    }


    ul li {
        font-size: 14px;
        text-align: start;
    }
}


@media (max-width: 500px) {
    ul {
        padding: 0 20px;
    }
    ul li {
        justify-content: flex-start;
    }
}

@media (max-width: 400px) {
    a {
        font-size: 16px;
    }
}