


#contact .main-container {
    border-radius: 0 0 2rem 2rem;    
    width: 300px;
    float: right;
    margin-right: 2rem;
    background-image: linear-gradient(oklch(0.34 0.15 255.28), oklch(0.61 0.21 248.36));
    
    place-items: anchor-center;
    margin-top: 1rem;
}

#qrcode {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    width: 150px;
    height: 150px;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);

}
#emailLink {
    display: inherit;
    padding: .75rem 1rem;
    color: inherit;
    background-image: linear-gradient(oklch(0.61 0.21 248.36), oklch(0.46 0.21 257.14));
    font-weight: inherit;
    font-family: inherit;
    text-decoration: inherit;
    border: 1px solid black;
    border-radius: 1rem;
    box-shadow: 0px 2px 2px black;
    
}
#emailLink:active {
    position: relative;
    top:2px;
    box-shadow: none;
    box-shadow: 0px 0px 2px black;
    
}
#contact p {
    text-align: center;
    padding: 0;
}
#contact h1{
    text-align: center;
    color: var(--intro-text-color);
    text-shadow: 0.2em 0.2em 0.2em black;
}
@media screen and (max-width: 480px){
    #contact .main-container {
        width: 60%;
    }
}
@media screen and (max-width: 768px){
    #contact .main-container {
        width: 50%;
    }
}
