body {
    background-color: #fff;
}

h1 {
    color: #fc4a1a;
    color: #f7b733;
    color: white;
    text-align: center;
    margin: 0px auto .2em auto;
    font-size: 90px;
}
h2 {
    font-size: 45px;
    text-align: center;
}
h3 {
    font-size: 38px;
    font-weight: 700 !important;
    text-align: center;
}
header {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    background: none;
}
header svg {
    position: absolute;
    width: 200vw;
    left: 50%;
    transform: translate(-50%,-60%);
    z-index: -1;
}
header span {
    margin: 1em auto;
    display: flex;
    flex-direction: row;
    gap: 2em;
}
header button, header a {
    display: flex;
    text-decoration: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: .5em;
    background: white;
    border: none;
    cursor: pointer;
    width: 300px;
    padding: .5em;
    font-size: 26px;
    font-weight: bold;
    color: #221E68;
    transition: background-color .3s, color .3s;
}
header button:hover, header a:hover {
    background: #f4f2fa;
    color: #3a3691;
}
header button img, header a img {
    height: 42px;
}

section {
    width: 100%;
    max-width: 1700px;
    margin: 0px auto;
    padding: 20px 100px;
}
section > div.legend {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5em;
}
section > div.legend > span {
    display: flex;
    flex-direction: row;
    gap: .5em;
    align-items: center;
}
section > div.legend > span > div {
    width: 26px;
    height: 26px;
    border-radius: 10px;
    background-size: 200% auto;
}
section > div.legend > span > p {
    color: #221E68;
    font-weight: 700;
    font-size: 20px;
}
section > div.tiles {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5em;
    justify-content: center;
    padding: 20px 0px;
}
.tile {
    width: 300px;
    padding: 60px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    border-radius: 20px;
    background-size: 200% auto;
    transition: box-shadow .3s, background-position .3s, transform .3s;
}
.tile h4 {
    font-size: 24px;
    text-transform: uppercase;
    color: #fff;
}
.tile p {
    color: white;
    font-weight: 700;
}
.tile-blue {
    background-image: linear-gradient(-45deg, #517cff 0%, #2948ff 51%, #517cff 100%);
}
.tile-green {
    background-image: linear-gradient(-45deg, #29b47f 0%, #00ff9d 51%, #29b47f 100%);
}
.tile-purple {
    background-image: linear-gradient(-45deg, #b062cc 0%, #7122cc 51%, #b062cc 100%);
}
.tile-orange {
    background-image: linear-gradient(-45deg, #e27241 0%, #e24154 51%, #e27241 100%);
}
.tile-sublime {
    background-image: linear-gradient(-45deg, #FC466B 0%, #3F5EFB 51%, #FC466B 100%);
}
.tile-lblue {
    background-image: linear-gradient(-45deg, #00B4DB 0%, #0083B0 51%, #00B4DB 100%);
}
.tile-test {
    background-image: linear-gradient(-45deg, #59C173 0%, #a17fe0 51%, #5D26C1 100%);
    background-image: linear-gradient(-45deg, #f64f59 0%, #f79d00 51%, #f64f59 100%);
}
.tile:hover {
    background-position: right center;
    transform: scale(1.02);
    box-shadow: 0 82px 54px -50px rgba(0,0,0,0.5);
}