h1, h2 {
    text-align: center;
    color: black;
}

.container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
}

.contact {
    padding: 30px 10px 0 10px;
    color: black;
    text-shadow: lightslategrey;
    font-size: 20px;
    font-weight: bolder;
}

.svg {
    margin: 20px 20px;
    width: 10%;
}

@media (min-width: 320px) and (max-width: 640px) {
    .container {
        grid-template-columns: 1fr;

    }
}