html,
body {
    width: 100vw;
    height: 100vh;
    font-size: 12px;
}

body {
    width: 100%;
    background: #F47857;
    background: linear-gradient(49deg, rgba(244, 120, 87, 1) 0%, rgba(240, 82, 90, 1) 79%);
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin: 10px 0;
}

h2 {
    margin: 0px auto 20px auto;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 500;
}

p {
    font-size: clamp(1.2rem, 2vw, 2rem);
    margin: 10px 0;
}

a {
    text-decoration: none;
}

section.header {
    width: 90%;
    margin: 20px auto;
    text-align: center;
    color: white;
    padding: 20px;
}

section.main {
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
}

.logo {
    display:block;
    width: 90%;
    max-width: 600px;
    height: auto;
    margin: 50px auto;
}

a.company {
    width: 40%;
    max-width: 500px;
    margin: 2rem;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    justify-content: flex-start;
    box-sizing: border-box;
    padding: 2rem;
    flex-grow: 1;
    font-family:"Roboto", sans-serif;
}

.company .link {
    display:block;
}

.company.heartbeats {
    background: #fff;
    color: #000;
    border-radius: 15px;
}

.company.smart-spaces {
    background: rgb(37,107,142);
    color: #fff;
    border-radius: 15px;
}

.company img {
    width: 90%;
    height: auto;
    max-width: 400px;
}