#aboutMe{
    width: 90vw;
    padding: 25px;
    border: 2px solid #444444;
    border-radius: 1rem 0.25rem 1rem 0.25rem;
    box-sizing: border-box;
    background: rgba(34, 34, 34, 0.75);
}

#aboutMe{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 25px;
}

#aboutMe span{
    margin-top: -49px;
    padding: 5px;
    background: #111111;
    box-sizing: border-box;
    border: 2px solid #444444;
    border-radius: 0.5rem 0.25rem 0.5rem 0.25rem;
    font-size: 26px;
    display: block;
    width: 13ch;
    text-align: center;
}

#aboutMe span p, #aboutMe p{
    background: linear-gradient(to right, white, grey, brown);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#aboutMe span p:hover, #aboutMe p:hover{
    background: linear-gradient(to right, skyblue, crimson);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media only screen and (min-width:320px){
    #aboutMe{
        font-size: larger;
    }
}

@media only screen and (min-width: 768px){
    #aboutP{
        font-size: larger;
        aspect-ratio: 1.16;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: justify;
        line-height: 35px;
    }
}

@media only screen and (min-width: 1100px){
    #aboutMe{
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media only screen and (min-width: 1252px){
    #aboutP{
        line-height: 40px;
        aspect-ratio: 1.14;
    }
}