@import './reset.css';
@import './reusables.css';

.body {
    background-color: var(--color-page-background);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contentWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 1rem 0 1rem;
    max-width: 800px;
    padding: 0 1rem 0 1rem;
    width: 100%;
}
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0 2rem 0;

    @media screen and (min-width: 40rem) {
        padding: 6rem 0 2rem 0;
    }
}
.hero-textContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.hero-title {
    color: var(--color-text);
    margin: 0.7rem 0;
    font-size: 2rem;

    @media screen and (min-width: 40rem) {
        font-size: 4rem;
    }
}
.hero-text {
    color: var(--color-text);
    margin: 0.7rem 0;
}
.contactButtons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;

    @media screen and (min-width: 40rem) {
        flex-direction: row;
    }
}
.contactButton {
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    color: var(--color-text);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}
.contactButton:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}
.contactButton-icon {
    width: 1rem;
    height: 1rem;
    transition: all 0.3s ease-in-out;
}
.contactButton:hover .contactButton-icon {
    transform: rotate(20deg);
}
.footer {
    margin: 2rem 0;
}