@import "general.css";

contacts h2, projects p
{
    margin:1rem;
    text-align: center;
    color:white;
}

contacts
{
    display: block;
    padding:1rem;
    /*background-color: #0c0c25 !important;*/
}

contacts p 
{
    display: block;
    justify-self: center;
    text-align: center;
    color:white;
}

contacts main-links 
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;

    width: 100%;
    padding: 10px 0;
}

contacts main-links a 
{
    display: block;
    text-decoration: none;
    align-self:center;
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    background: #040612;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: 0.2s ease;
    height:100%;
    border-width:1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.107);
}

contacts main-links a:hover 
{
    background: #1c54c4b3;
    transform: translateY(-2px);
}
