main{
    width: 550px;
    max-width: 100vw;

    padding-top: 50px;


    display: flex;
    flex-direction: column;
}
h1{
    text-align: left;
    margin: 0 0 30px 0;
    font-size: 30px;
    font-weight: 700;
}
span{
    margin: 0;
    font-size: 15px;
    font-weight: 550;
}
.inp{
    margin-bottom: 20px;
    height: 40px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 5px;
    padding-left: 10px;
}
textarea{
    resize: vertical !important;
    min-height: 100px;
}
.editPfp{
    display: flex;
    flex-direction: row;
    gap: 50px;
    padding: 10px 0 30px 0;
    align-items: center;
}
.editPfp img{
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

button{
    height: 30px;
    font-size: 15px;
    background-color: var(--primary);
    border-radius: 5px;
    border: none;
    color: white
}
.saveChanges{
    min-width: 200px;
    max-width: fit-content;
    height: 40px;
    font-size: 17px;
    margin-top: 20px;
}

.techpackinfo{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 8px;
    width: 100%;
    margin-bottom: 23px;

}.techpackinfo div {
    color: var(--primary);
    font-size: 13px; /* 25px * 0.6 */
    width: auto;
    font-weight: 600;
}

.techpackinfo button {    
    border: 1px solid rgba(255, 0, 0, 0.5);
    color: rgba(255, 0, 0, 0.5);
    font-size: 13px; /* 25px * 0.6 */
    padding: 3px; /* 5px * 0.6 */
    background-color: white;
    border-radius: 30px; /* 50px * 0.6 */


    height: fit-content;
}
button.inp{
    background-color: white;
    text-align: left;
    color: black
}

@media (max-width: 700px) {
    .techpackinfo{
        gap: 2vw;
        margin: 2vw 0;
        margin-bottom: 5vw;
    }
    .techpackinfo div{
        font-size: 3vw;
    }
    .techpackinfo button{    
        font-size: 3vw;
        padding: 1vw;
        max-width: 30vw;
    }
    main{
        padding-top: 10vw;
    }

    h1{
        margin: 0 0 3vw 0;
        font-size: 6vw;
    }
    span{
        font-size: 3.6vw;
    }
    .inp{
        margin-bottom: 5vw;
        height: 8.5vw;
        border-radius: 1.5vw;
        padding-left: 1vw;
    }
    textarea{
        min-height: 20vw;
    }
    .editPfp{
        gap: 5vw;
        padding: 2vw 0 5vw 0;
    }
    .editPfp img{
        width: 12vw;
        height: 12vw;
    }
    button{
        height: 8vw;
        font-size: 4vw;
        border-radius: 2vw;
    }
    .saveChanges{
        width: 40vw;
        height: 8vw;
        font-size: 4vw;
        margin-top: 3vw;
    }
}