body {
    margin-top: calc(64px + 32px);
}

.navbar {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    background: #009999;
    height: 64px;
    padding: 16px;
}

.navbar .container {
    display: flex;
    align-items: center;
}

.navbar .container *:not(:first-child) {
    margin-left: 3rem;
    text-decoration: none;
    color: white;
    transform-origin: center;
    transition: all 0.5s ease-in-out;
}

.navbar .container *:not(:first-child):hover {
    transform: scale(1.1);
}

.page {
    height: calc(100vh - 64px - 32px);
    position: relative;
    overflow: hidden;
}

.page.page-small {
    height: calc(70vh - 64px - 32px);
}

.page.page-dynamic {
    height: auto;
}

.page-anchor {
    position: absolute;
    top: -96px;
    left: 0px;
}

.page-background {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.page-background-inner {
    width: 100%;
    height: 100%;
    
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    
    transform-origin: center;
    transition: all 0.5s ease-in-out;
}

.page:hover .page-background-inner {
    transform: scale(1.25);
}

.cutout-top {
    clip-path: polygon(0% 0%, 100% 30%, 100% 100%, 0% 100%)
}

.cutout-bottom {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 70%)
}

.cutout-top-bottom {
    clip-path: polygon(0% 0%, 100% 30%, 100% 100%, 0% 70%)
}

.cutout-top-flipped {
    clip-path: polygon(0% 30%, 100% 0%, 100% 100%, 0% 100%)
}

.page-content {
    display: flex;
    flex-direction: column;
    
    height: calc(100% - 64px);
    padding: 32px;
}
p2 {  
background: yellow;

color: black;
}
p {    
    
    
}

h4 {
text-decoration-line: underline;
    
}

.footer {
  background: #009999; 
  height: 100px;
}

h5 {
  font-weight: bold;
  margin-bottom: 0.1em;
}

.white p, .white h4 {
  color: white; 
}

.row-badge {
  display: flex;
  flex-direction: row;
}

.row-badge img {
  margin-right: 1rem;
}

@media (min-width: 768px) {
    .flex-desktop {
        display: flex;
    }
}

.landing-page .row, .download-column {
    height: 100%;
}

.download-btn {
    display: block;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border: 4px solid white;
    color: white !important;
    transform-origin: center;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    user-select: none;
}

.download-btn:hover {
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .download-btn {
        margin-top: calc(65vh - 64px - 32px);
    }
}
h7 {
color: crimson;
}

form > p {
    margin-bottom: 0.01em;
}

form > p > *, form > p > * > * {
    width: 100%;
}

form > p > * > input, form > p > * > textarea {
    color: black;
}

form > p > button {
    color: white !important;
    transform-origin: center;
    transition: all 0.5s ease-in-out;
}

form > p > button:hover {
    transform: scale(1.1);
}