@import url('https://fonts.googleapis.com/css2?family=Bona+Nova+SC:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    background: linear-gradient(130deg, #ffcc62, #fe6749) no-repeat;
    color: #fff;
    overflow: hidden;
}

.content {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

img {
    position: absolute;
    left: -200px;
    top: 20%;
    width: 2200px;
    opacity: 0.2;
    z-index: -1;
}

h1 {
    font-family: "Bona Nova SC", 'Inter', serif;
    font-size: 8em;
    line-height: 0.9em;
    text-shadow: 0 0 20px rgb(190, 92, 0, 0.3);
}

p {
    margin-top: 1em;
    font-family: "Rubik", sans-serif;
    font-size: 2.2em;
}

.top {
    font-style: italic;
    opacity: 0.9;
}

.bottom {
    font-size: 1.5em;
    opacity: 1;
}

@media screen and (orientation: portrait) {
    body {
        overflow: hidden;
    }

    h1 {
        font-size: 2.2em;
    }

    .bottom {
        font-size: 1.2em;
    }

    p {
        font-size: 1.4em;
    }

    img {
        width: 1200px;
    }

    .content {
        padding: 0 5em;
    }
}