@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

:root {
    --background-color: #f5f2ed;
    --primary-color: #4d78a2;
    --text-color: #424242;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--text-color);
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding-block: 3rem;
    background-color: var(--background-color);

    @media (min-width: 600px) {
        padding-block: 6rem;
    }
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
    max-width: 900px;
    padding-inline: 1.5rem;

    @media (min-width: 600px) {
        gap: 6rem;
    }
}

.logo {
    display: block;
    width: 80%;
    height: auto;

    @media (min-width: 600px) {
        width: 60%;
    }
}

.logo__rotatable {
    transform-origin: center;
    animation: rotate 15s linear infinite;

    @media (prefers-reduced-motion: reduce) {
        animation: none;
    }
}

.claim {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.7;
    hyphens: auto;
    overflow-wrap: break-word;
    word-break: break-word;

    @media (min-width: 500px) {
        font-size: 1.5rem;
    }

    @media (min-width: 700px) {
        font-size: 2rem;
    }
}

@keyframes rotate {
    from {
        rotate: 0deg;
    }
    to {
        rotate: 360deg;
    }
}
