body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    background-color: #c0d6c5;
    margin: 0;
}

button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 150px;
    height: 100px;
    background-color: #c0d6c5;
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    padding: 1rem 2rem;
    margin: 1rem;
    border-radius: 30px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border: solid 2px #c0d6c5;
}

button:hover, button:active {
    background-color: #ffffff;
    cursor: pointer;
}

h1 {
    font-family: 'Reenie Beanie', cursive;
    font-size: 4rem;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 0.5rem;
    background-color: white;
}

.containerButtons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
}

.containerOutside {
    
}

.headerImgBox {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: solid 10px #dac8be;
    background: url("img/realtor pic hq.jpg") no-repeat center;
    background-size: cover;
}

.headerImgBox:hover {
    background: url("img/colorful.jpg") no-repeat center;
    background-size: 100%;
}

.jobBox {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    padding: 2px 24px 16px;
    margin: 1rem 0.5rem;
    border-radius: 15px;
}

.jobBox:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.langHeader {
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

.langHeader p {
    padding: 0.25rem 0.66rem;
}

.langHeader a {
    text-decoration: none;
    color: black;
}

.langHeader a:hover {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.currentLang {
    background-color: #c0d6c5;
}


@media only screen and (min-width: 600px) {
    
    .containerButtons {
        flex-direction: row;
    }
    
    .containerOutside {
        width: 750px;
        margin: 0 auto;
        background-color: white;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.4);
    }
    
}