.pfp {
    border-radius: 50%;
    width: 192px;
    height: 192px;
    margin: auto;
    display: block;
}

.pronouns {
    p {
        font-size: 25px;
    }
}
.paragraph {
    p{font-size: 25px;}
}

.main {
    border-style: solid;
    border-color: white;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: black;
    padding: 1px;
    width: 400px;
    display: block;
    border-radius: 20px;
    p {
        color: white;
    }
    h1 {
        color: white;
    }
    a {
        box-shadow: inset 0 0 0 0 grey;
        color: white;
        font-size: 40px;
        margin: 0 -.25rem;
          padding: 0 .25rem;
        transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
        line-break: auto;
        line-height: 80px;
    }
    a:hover {
        box-shadow: inset 400px 0 0 0 grey;
        color: white;
    }
    font-family: 'Montserrat';
}

.flash {
    opacity: 0;
    margin: 25px;
    animation-name: flash;
    animation-fill-mode: forwards;
    animation-duration: 0.2s;
}

@keyframes flash {
    0% {
        opacity: 0;
    }
    1% {
        opacity: 1;
    }
    19% {
        opacity: 1;
    }
    20% {
        opacity: 0;
    }
    99% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.projects {
    line-height: 10px;
    a {
        font-size: 30px;
        line-height: 30px;
    }
    p {
        color: grey;
        font-size: 20px;
    }
    br {
        line-height: 200px;
    }
}