@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bree+Serif&family=EB+Garamond:ital,wght@0,500;1,800&display=swap");

:root {
    --background: #86B663;
    --color: white;
    --display-message: "Please rotate your phone.";
    --font-family: "Bebas Neue", cursive;
    --font-size: 54px;
    --spacing: 2px;
}

::-webkit-scrollbar {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100vw;
    height: 100vh;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#rotate {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1000;  
    position: fixed;
    top: 0;
    left: 0;
    letter-spacing: var(--spacing);
    text-align: center;
    display: none;
    color: var(--color);
    background: var(--background);
    font-family: var(--font-family);
    font-size: var(--font-size);
}

#rotate::before {
    content: var(--display-message);
}