html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
}

.viewport-wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    width: 360px;
    height: 700px;
    transform-origin: top left;
    transform: scale(calc(100vh / 700));
    position: relative;
    font-family: 'Helvetica Neue', sans-serif;
    text-align: center;
    transition: 1.2s;
    visibility: hidden;
    opacity: 0;
}

.content.show {
    visibility: visible;
    opacity: 1;
}

.banner-main {
    width: 100%;
    margin-top: 10px;
}

.frame-container {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.frame-container img {
    top: 0%;
    width: 100%;
    display: block;
}

.frame-container video {
    position: absolute;
    top: 12.5%;
    left: 11.3%;
    width: 77.2%;
    height: 73.2%;
    object-fit: cover;
    border: none;
    background-color: black;
}

.button-container {
    position: relative;
    width: 100%;
}

.download-button {
    width: 55%;
    margin: auto;
    display: block;
}

.download-button-inactive {
    position: absolute;
    top: 0%;
    right: 22.5%;
    width: 55%;
    display: none;
}

.banner-gallery {
    width: 100%;
    max-width: 300px;
    margin: 40px auto 10px;
}

.social-label {
    width: 100%;
    margin-top: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0px;
}

.social-icons img {
    height: 40px;
}