body, html {
    margin: 0;
    padding: 0;
    font-family: 'PPPangramSans-Semibold', sans-serif;
    height: 100vh;
    background-color: rgb(240, 247, 245);
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.header {
    position: relative;
    border-radius: 0 0 10px 10px;
    background-color: white;
    padding: 12px 56px;
    display: flex;
    align-items: center;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    height: 64px;
}

.content {
    display: flex;
    width: 100%;
    flex-grow: 1;
    position: relative;
    align-self: center;
    justify-content: center;
    align-items: stretch;
    overflow: hidden;
}

.splash-wrapper {
    max-height: calc(100% - 32px);
    max-width: 512px;
    width: 100%;
    display: flex;
    padding: 16px;
}

.splash {
    align-self: center;
    display: flex;
    flex-direction: column;

    background-color: white;
    border-radius: 12px;
    padding: 12px;
    overflow: hidden;
    height: 100%;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;
    max-height: fit-content;
}

.splash-image {
    width: 100%;
    max-height: calc(1.5 * 100vw);
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 24px;
    min-height: 0;
}

.animation-content {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 24px;
}

.animation-block {
    width: 114px;
    height: 114px;
    position: relative;
}

.animation-logo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 84px;
    height: 84px;
}

.animation-gif {
    position: absolute;
    top: 10px;
    right: 4px;
    width: 64px;
    height: 64px;
    object-fit: cover;
}

.splash h1 {
    font-size: 24px;
    font-weight: 600;
    color: #010D0A;
    margin: 0 0 8px;
}

.splash p {
    display: block;
    position: relative;
    font-family: 'Inter-Regular', sans-serif;
    font-size: 12px;
    color: #666666;
}
