.contact-header
{
    position: relative;
    width: 100%;
    height: 10%;

    margin-top: 5vmin;
    margin-bottom: 15vmin;

    text-align: center;
    word-wrap: break-word;
    font-size: 8vmin;
    font-weight: 900;
    color: #9575CD;
}

.contact
{
    position: relative;
    width: 100%;
    height: 8vmin;

    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-flow: wrap;
    gap: 5vmin;
}

.copy
{
    position: relative;
    width: 50vmin;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    
    border-radius: 50vmin;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #9575CD;
    color: white;

    transition: all 0.18s ease;
}

.copy:hover
{
    transform: scale(1.1);
    color: black;
    background-color: #9575CD;
}

.copy-img
{
    position: relative;
    width: 12%;
    height: 80%;
}

.copy-button
{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-style: none;
}

.copy-text
{
    position: relative;
    width: 80%;
    height: 50%;

    font-size: 3vmin;
    font-weight: 900;
}

.footer
{
    margin-top: 20vmin;
}

.content-container
{
    height: 100vh;
}