body {
    font-family: Verdana, sans-serif;
    min-height: 100vh;
}

.my-flex-wrap {
    display: inline-flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    width: 100%;
    min-height: calc(100vh - 4rem);
}

.my-flex-cont {
    position: relative;
    display: inline-flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    width: 24rem;
}
.my-flex-box {
    margin: 5px;
    padding: 5px;
    flex: 0 1 auto;
    min-width: 16rem;
}

.button {
    text-decoration: none;
    align-items: center;
    background-color: rgb(255, 255, 255);
    border-radius: 0.6rem;
    box-shadow: rgba(11, 43, 158, 0.15) 0px 6px 20px -6px;
    color: rgb(8, 27, 75);
    display: flex;
    font-weight: 600;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease 0s;
}

.button:hover {
    background-color: rgb(230, 230, 230);
    transition: all 0.2s ease 0s;
}

.button:active {
    box-shadow: 0px 0px 0px;
}

.my-flex-cont img {
    width: 1.5rem;
}

.button span {
    margin-left: 1rem;
}

h1 {
    color: white;
    font-size: 4em;
}

.floater {
    height: 80%;
    min-height: 25rem;
    border-radius: 0px 0px 64px 64px;
    left: 0px;
    overflow: hidden;
    position: absolute;
    top: 0px;
    width: 100%;
    background-color: rgb(0, 105, 255);
}

.floater > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    max-width: 100%;
    border-style: none;
}
.footer {
  height: 2rem;
  text-align: center;
}