/* phone */
@media (max-width: 768px) {
    body {
        margin: 0;
    }

    .main {
        width: 100%;
    }
}

/* tablet */
@media (min-width: 769px) and (max-width: 1199px) {
    body {
        margin: 0;
    }

    .main {
        width: 60%;
        margin-left: 20%;
    }
}

/* desktop */
@media (min-width: 1200px) {
    body {
        margin: 0;
    }

    .main {
        width: 30%;
        margin-left: 35%;
    }
}

html {
    background-color: black;
    font-size: 18px;
    margin: 0;
    padding: 0;
}

.main {
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: 100vh;
    font-family: "Montserrat", sans-serif;
    font-weight: 650;
    color: #FFFFFF;
}

.banner img {
    width: 50%;
    margin: 25px 0;
}

.avatar img {
    width: 70%;
    margin: 25px 0;
}

.mainLinks {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-left: 10%;
}

.mainLinks a {
    background-color: #8a2be2;
    padding: 14px 0px;
    margin-top: 15px;
    border-radius: 50px;
    width: 100%;
}

.socials {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin-left: 10%;
}

.socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #8a2be2;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: 15px;
}

.bi {
    font-size: 1rem;
    color: #FFFFFF;
}

a {
    text-decoration: none;
    color: inherit;
}