body {
    background-image: linear-gradient(to top, rgb(122, 32, 122),rgb(82, 82, 218));
    color: white;
    font-family: Karla, sans-serif;
}

p {
    opacity: 0.7;
    transition: opacity .2s;
}

.social {
    width: 500px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    margin: 30px;
    padding: 15px;
    font-size: larger;
    font-family: Karla, sans-serif;
    transition: opacity, .2s;
    color: rgba(255,255,255,0.8)
}

a {
    color: white;
}

a:link{
    text-decoration: none;
}

#me{
    border-radius: 50%;
    margin-top: 20px;
    transition: transform .2s;
}

#email{
    opacity: 0.7;
    transition: opacity, .2s;
}

#me:hover {
    transform: scale(1.05);
}

#email:hover {
    opacity: 1;
}

p:hover {
    opacity: 1;
}

h2:hover{
    transform: scale(1.05);
}

.social:hover {
    border-color: rgb(255,255,255);
    color: white;
}

@media only screen and (max-width: 600px){
    #me {
        width:120px;
        height: 120px;
    }
    
    h2 {
        font-size: large;
    }

    p {
        font-size: small;
    }
    .social{
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        font-size: medium;
    }

}