body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

body::-webkit-scrollbar {
  display: none;
}

* {
    user-select: none;
}

.selectable {
    user-select: text;
}

a {
    text-decoration: none;
    color: black;
}

.background-image {
    position: fixed;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 1
}

.navbar {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7vh;
    padding: 2vh;
    background: linear-gradient(to bottom, black, transparent);
    z-index: 3;
    justify-content: left;
}

.app-logo {
    height: 7vh;
    object-fit: contain;
    user-select: none;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 93vh;
    margin-top: 7vh;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem
}

.app-logo-header {
    object-fit: contain;
    height: 4rem
}

.iphone-simulator-display-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    object-fit: contain;
    padding: 5vh 0;
}

.iphone-simulator-display {
    height: 22vh
}

.download-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
}

.links-wrapper {
    padding: 4vh 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vh
}

.policy-container {
    position: absolute;
    top: 7vh;
    height: 70vh;
    display: flex;
    flex-direction: column;
    width: calc(100% - 40px);
    max-width: 700px;
    padding: 5vh 20px;
    z-index: 2;
    gap: 2vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.policy-container::-webkit-scrollbar {
    display: none;
}