* {
    font-family: 'Mark Pro';
    font-weight: bold;
}

h1 {
    margin: 0;
}

html, body {
    height: 100%;
}

body {
    background: #6FD283;
    margin: 0;
}

@font-face {
    font-family: 'Mark Pro';
    font-style: normal;
    font-weight: 900;
    src: url("Mark-Heavy.ttf");
}

@font-face {
    font-family: 'Mark Pro';
    font-style: normal;
    font-weight: 950;
    src: url("Mark-Black.ttf");
}

@font-face {
    font-family: 'Mark Pro';
    font-style: normal;
    font-weight: 700;
    src: url("MarkPro-Bold.otf") format('opentype');
}

@font-face {
    font-family: 'Mark Pro';
    font-style: normal;
    font-weight: 500;
    src: url("subset-markpro-medium.ttf");
}

.app {
    display: flex;
    height: 100vh;
    min-height: 650px;
    align-items: center;
}

.app h2 {
    font-weight: 950;
    font-size: 35px;
    margin: 0;
    margin: 10px 40px;
}

.app p {
    font-weight: 500;
    font-size: 25px;
    color: white;
    margin: 0;
    margin: 10px 40px;
}

.profile h2 {
    text-align: center;
}

.profile, .profile-spacer {
    width: 100%;
    max-width: 550px;
    flex-shrink: 0;
}

.profile-inner {
    height: 100%;
}

.profile {
    position: fixed;
    border-radius: 0 20px 20px 0;
    background-color: #EFEFEF;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 675px;
    box-shadow: 0 0 23px rgba(0, 0, 0, 0.16);
}

.profile-col {
    height: 100%;
}

.profile .profile-col .spacer {
    flex-grow: 1;
}

.profile i {
    color: #707070;
    font-size: 20px;
    margin-bottom: 30px;
}

.profile h1 {
    padding-top: 65px;
    padding-bottom: 30px;
    font-weight: 950;
    font-size: 50px;
}

.profile h2 {
    font-size: 40px;
    font-weight: 500;
    color: #707070;
}

.app {
    width: 100%;
    overflow: hidden;
}

.pantri {
    background-color: #6FD283;
}

.roone {
    background-color: #727CD5;
}

.travel-buddy {
    background-color: #F0C64C;
}

.app .images {
    display: flex;
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
}

.app .image {
    min-width: 180px;
    min-height: 370px;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-10deg);
    padding-right: 20px;
}

.pantri .image {
    animation: pantri-scroll 12s linear infinite;
}

.roone .image {
    animation: roone-scroll 9.6s linear infinite;
}

.travel-buddy .image {
    animation: travel-buddy-scroll 14.4s linear infinite;
}

.memoji-left {
    display: none;
}

@keyframes travel-buddy-scroll {
    0% {
        transform: translate3d(0, 0, 0) rotate(-10deg);
    }

    100% {
        transform: translate3d(-600%, 0, 0) rotate(-10deg);
    }
}

@keyframes roone-scroll {
    0% {
        transform: translate3d(0, 0, 0) rotate(-10deg);
    }

    100% {
        transform: translate3d(-400%, 0, 0) rotate(-10deg);
    }
}

@keyframes pantri-scroll {
    0% {
        transform: translate3d(0, 0, 0) rotate(-10deg);
    }

    100% {
        transform: translate3d(-500%, 0, 0) rotate(-10deg);
    }
}

.app .images {
}

.app-content {
    overflow: hidden;
}

.profile .profile-col {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.swipetext {
    color: #707070;
    font-weight: 500;
    text-align: center;
    font-size: 25px;
    padding-top: 20px;
}

@media (max-width: 1200px) {
    .profile, .profile-spacer {
        max-width: 450px;
    }

    .profile h2 {
        font-size: 35px;
    }
}

@media (max-width: 900px) {
    .profile {
        position: relative;
        border-radius: 0 0 20px 20px;
        width: 100%;
        max-width: 100%;
        height: 0;
        min-height: 110px;
        flex-direction: row;
    }

    .profile h1 {
        font-size: 20px;
        padding: 0;
        margin: 0;
        padding-top: 10px;
    }
    
    .profile h2 {
        font-size: 20px;
        margin: 0;
        margin-bottom: 10px;
    }

    .profile i {
        display: none;
    }

    .memoji-center {
        display: none;
    }

    .memoji-left {
        display: initial;
    }

    .profile-spacer {
        display: none;
    }

    .profile-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 500px;
        width: 100%;
    }

    .profile {
        justify-content: center;
        align-items: center;
    }

    .profile-col {
        align-items: center;
        justify-content: center;
    }

    .profile-col .spacer {
        display: none;
    }

    .swipetext {
        font-size: 20px;
    }

    .app {
        min-height: 750px;
    }
}

@media (min-height: 900px) {
    .app .image {
        min-width: 280px;
        min-height: 570px;
    }
}
