.contact-main {
    max-width: 425px;
    margin: auto;
    text-align: center;
    text-transform: uppercase;
}

.contact-main h1 {
    margin-top: 40px;
    margin-bottom: 13px;
    font-size: 20px;
    font-weight: 600;
    color: rgb(163, 163, 163);
}

.contact-main h2 {
    font-size: 21px;
    font-weight: 600;
    color: rgb(218, 218, 218);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 70px;
    margin-bottom: 100px;
    font-family: "Archivo", "Archivo Placeholder", sans-serif;
}

.contact-btn {
    display: inline-block;
    padding: 15px 30px;
    color: rgb(163, 163, 163);
    background-color: transparent;
    border: 1px solid rgb(163, 163, 163);
    text-transform: uppercase;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
    height: 72px;
    width: 262px;
    align-content: center;
}

.contact-btn:hover {
    background-color: rgb(163, 163, 163);
    color: #000;
}