h1 {
    text-align: center;
    font-size: 1.75rem;
}

.pop-up-info {
    text-align: center;
    font-size: 1.25rem;
    margin-top: 1em;
}

.row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4em 0;
}

.col {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-content: center;
    width: 100%;
    max-width: 600px;
    gap: 4em;
    margin: 3em auto;
    line-height: 0;
}

.col img {
    width: 100%;
}

.main-text {
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: .5em;
}

.email-link {
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--mainFontColor);
    text-decoration: none;   
} 

/*-----HOVER AND CLICK EFFECTS---------------------------------------*/
.email-link:hover {
    text-decoration: underline;
    text-underline-offset: 0.3em;
    text-decoration-thickness: 0.15em;
}

.email-link:active {
    text-decoration: underline;
    text-underline-offset: 0.3em;
    text-decoration-thickness: 0.15em;
}

/*-----HANDLE LARGER SCREEN SIZE-------------------------------------*/
@media screen and (min-width: 515px) {
    .email-link {
        font-size: 1.5rem;  
    }    
}