@charset "UTF-8";

main{
    color:var(--font);
    padding-top: 10vh;
}

h2.title {
    margin-top: 2rem;
    font-size: 1.5rem;
    line-height: 1.5;
}

h2.title::after {
    content: '';
    display: block;
    height: 5px;
    width: 10rem;
    background: #d0bea2;
    margin: 1rem 1rem 1rem 0;
}

h3.title {
    padding: 0.4em 0.5em;
    color: #494949;
    border-left: solid 5px var(--black);
    font-size:1.3rem;
    margin:1.5rem auto;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/img_recruit.jpg');
    background-size: cover;
    background-position: center;
}

.transparent-button {
    display: inline-block;
    font-size: 24px;
    color: var(--east-bay-dark);
    text-decoration: none;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s, color 0.3s;
}

.transparent-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size:1.5rem;
    }
    .button-container {
        flex-direction: column;
    }
    .transparent-button {
        margin:20px;
        padding: 10px;
        width:40vw;
        height:7vh;
        text-align: center;
    }
}
@media screen and (min-width: 768px) {
    .button-container {
        height: 60vh;
    }
    .transparent-button {
        margin:20px;
        padding: 30px 60px;
    }
}
