/* loading fonts */
@font-face {
    font-family: 'CeraRoundPro';
    font-style: normal;
    font-weight: 400;
    src: local('CeraRoundPro'), local('CeraRoundPro-Regular'),
        url(./assets/fonts/CeraRoundPro-Regular.woff2) format('woff2');
}

@font-face {
    font-family: 'CeraRoundPro';
    font-style: normal;
    font-weight: 500;
    src: local('CeraRoundPro Medium'), local('CeraRoundPro-Medium'),
        url(./assets/fonts/CeraRoundPro-Medium.woff2) format('woff2');
}

body {
    font-family: 'CeraRoundPro';
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

section {
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

section h1 {
    font-size: 18px;
    line-height: 23px;
    font-weight: 500;
    color: #8763E6;
    margin: 0;
}

section p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #AD90F9;
    margin: 0;
}

.yuruma-lp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    max-width: 680px;
    padding: 24px;
    text-align: center;
}

.yuruma-lp__header {
    display: flex;
}

.yuruma-lp__logo {
    height: 54px;
}

.yuruma-lp__loading-ripple {
    width: 64px;
    height: 64px;
}

/* desktop styles */
@media only screen and (min-width: 768px) {

    section {
        margin-bottom: 64px;
    }

    section h1 {
        font-size: 24px;
        line-height: 32px;
    }

    section p {
        font-size: 18px;
    }

    .yuruma-lp__logo {
        height: 80px;
    }
}