html {
    --primary-color: rgb(205, 163, 255);
    font-family: "Montserrat", sans-serif;
}

.mugshot {
    border-radius: 15%;
}

h1,
a,
p,
h2,
span,
label,
button {
    font-family: "Montserrat", sans-serif;
}

.purple {
    color: var(--primary-color);
}

.animated-link {
    display: block;
    text-align: center;
    position: relative;
    text-decoration: none;
    color: azure;
    font-size: 12px;
    font-weight: bolder;
    letter-spacing: 1px;
    margin: 0 10px;
    height: 28px;
    font-family: "Montserrat", sans-serif;
}

.animated-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 150ms ease-in;
}

.animated-link:hover::after {
    transform: scaleX(1);
}

#contact-icon-container a {
    color: white;
}

#contact-icon-container a:hover {
    color: #d1d2d4;
}

@media screen and (max-width: 975px) {
    .animated-link:hover::after {
        transform: scaleX(0.2);
    }
}

@media (min-width: 768px) {
    .news-input {
        width: 75%;
    }
}