
main{
    padding-top: 50px;
    width: 800px;
    max-width: 100vw;
    margin: auto;
}
.main_container{

    margin-top: 50px;
    gap: 20px;

    display: flex;
    flex-direction: row;
    justify-content: center;
}
.profile{
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 5
}
.other{
    flex: 10;
}

.profile img{
    width: 120px;
    height: 120px;
    border-radius: 100%;
    margin: 10px;
}
.profile h1{
    font-size: 25px;
}
.other p{
    font-size: 20px;
}
.other h1{
    font-size: 20px;
    margin-top: 40px;
}
.links{
    display: flex;
    flex-direction: column;
    gap: 20px
}
.link{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    background-color: white;
    border: 1px solid var(--primary);
    border-radius: 10px;
    font-size: 16px;
    width: 300px;
    height: 35px;
    cursor: pointer;
    padding-left: 5%;
    padding-right: 5%;
}
.link span, .link svg{
    margin: 0;
    color: var(--primary);
    font-weight: 600;
}
@media (max-width: 700px) {
    .profile img{
        width: 40vw;
        height: 40vw;
    }

    .profile p{
        font-size: 5vw;
    }
    .profile h1{
        font-size: 8vw;
    }

    main{
        padding: 10vw
    }
    .main_container{
        flex-direction: column;
        margin-top: 0;
    }
    .profile, .bio, .links{
        padding: 0 3vw;
    }
    .profile, .bio{
        border-bottom: 1px solid rgba(0,0,0,0.2);
        margin-bottom: 10vw;
        padding-bottom: 10vw;
    }
    .link{
        width: 100%;
        font-size: 4vw;
        height: 10vw;
        border-radius: 3vw;
    }
    .links{
        margin-top: 0;
    }
    .links h1{
        margin-top: 0;
    }
    .profile p:last-child{
        margin-bottom: 0;
    }
    .other p{
        font-size: 5vw;
    }
    .other h1{
        font-size: 7vw;
    }
}