:root{
    --brand-main-color: #1830ad;
    --brand-reverse-color: white;
    --carercard-color:#1BAEA6;
}
body,p{
    font-family: Gilroy Bold,sans-serif;
}
a {
    color: var(--brand-main-color);
}
h1,h2,h3 {
    font-family: Gilroy Bold,sans-serif;
    line-height: 1;
    letter-spacing: -.215rem;
    width:100%;
    color:black;
}
h1 {
    font-size: calc(2.5rem + 3.125vw);
}
.logos{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}
.logo {
    width:30%;
    padding: 5%;
}
.logo.carercard{
    color:var(--carercard-color)
}
.logo.clevacard{
    color:var(--brand-main-color)
}
.clickable{
    cursor: pointer;
}
.arrow {
    font-size: 5em;
    color: #eeeeee;
}
.contents {
    margin: auto;
    font-size: 2.0vh;
    color: cadetblue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    max-width:80%;
}
@media screen and (min-width: 901px) {
    .contents{
        max-width:40%;
    }
}
.footer {
    width:100%;
    background:var(--brand-main-color);
    color: var(--brand-reverse-color);
    position: absolute;
    bottom: 0;
    left:0;
    padding: 1em;
    font-size: 0.5em;
}