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

#introduction h3{
    background: linear-gradient(to right, white, grey, brown);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 25px;
    letter-spacing: 2px;
    color: transparent;
}

#introduction h3 span:nth-of-type(1){
    font-size: 40px;
    font-family: 'Times New Roman', Times, serif;
}

#introduction h3 span:nth-of-type(2){
    font-family: 'Nosifer', 'Times New Roman', Times, serif;
}

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

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

#introduction 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){
    #introduction p{
        font-size: large;
    }
}

@media only screen and (min-width: 768px){
    #introduction{
        font-size: larger;
        place-content: center center;
    }
}

@media only screen and (min-width: 1024px){
    #introduction h3{
        font-size: xx-large;
    }
    #introduction p{
        font-size: larger;
    }
}