body {
    font-family: Roboto, sans-serif;
    margin: 0;
}

.full-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header-wrapper {
    display: flex;
    box-sizing: border-box;
    padding: 0 16px;
    width: 100%;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
    background: #9292C3;
    color: #fff;
}

.header-wrapper-title {
    display: flex;
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.header-wrapper-title > img {
    height: 55px;
}

.header-wrapper-title > div {
    line-height: 55px;
    margin-left: 5px;
}

.main-wrapper {
    display: flex;
    justify-content: center;
    flex: 1;
}

.main {
    text-align: center;
    margin: 40px 20px;
    max-width: 1000px;
}

.main-policy {
    text-align: left;
    margin: 40px 20px;
    max-width: 1000px;
}

.main-text {
    font-size: 3rem;
    margin-bottom: 20px;
}

.main-subtext {
    font-size: 1.2rem;
}

ul {
    text-align: left;
}


.footer-content {
    padding: 20px;
    justify-content: center;
    display: flex;
    font-size: 0.8rem;
    flex-wrap: wrap;
}

.footer-content > a {
    margin-left: 5px;
}

.main-app-store-download-img {
    width: 250px;
    margin: 40px 0;
}

.options-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
}

.single-option {
    padding: 20px;
    background-color: rgba(236, 236, 236, 0.75);
    width: 200px;
    height: 70px;
    border-radius: 15px;
    flex-grow: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.single-option > div > img {
    background-color: #9292C3;
    width: 40px;
    border-radius: 10px;
    padding: 5px;
    margin-right: 10px;
}