html {
    font-family: 'Roboto', sans-serif;
}

h1 {
    font-weight: 900;
}

.home {
    color: white;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.5);
}

.main_logo {
    margin-top: 2.0rem;
}

.main-page .card {
    min-height: 20.0rem;
}


.card {
    cursor: pointer;
}

.card-image {
    position: relative;
    width: 100%;
}

.card-image:after {
    content: "";
    display: block;
    padding-bottom: 100%;
    /* The padding depends on the width, not on the height, so with a padding-bottom of 100% you will get a square */
}

.card-image img {
    position: absolute;
    /* Take your picture out of the flow */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* Make the picture taking the size of it's parent */
    width: 100%;
    /* This if for the object-fit */
    height: 100%;
    /* This if for the object-fit */
    object-fit: cover;
    /* Equivalent of the background-size: cover; of a background-image */
    object-position: center;
}

.logo_one h4 {
    text-align: center;
    margin-bottom: 3.0rem;
}

.logo_hover p {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 1.0rem;
}

.card {
    border-radius: 1.0rem;
    text-align: center;
    box-shadow: 0.1rem 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}

.pink {
    background-color: pink;
}

.paleblue {
    background-color: paleturquoise;
}

.red {}

.blue {
    background-color: blue;
}

.header_background {
    background-image: linear-gradient(#C00000, #FF0000);
    margin-bottom: 4.0rem;
    box-shadow: 0.1rem 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.5);
}


.callout {
    border: none;
    background: none;
}

.hideAll {
    display: none;
}

.splash {
    display: block;
}
