@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

:root
{
  --dark-color: #121212;
  --light-color: #e8e8e8;
}

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body
{
    overflow: hidden;
    background-color: var(--dark-color);
}

iframe
{
    width: 100%;
    height: 100vh;
    border: none;
}

.offline
{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    color: var(--light-color);
}

.offline h1
{
    width: 100%;
    font-size: 36px;
    text-align: center;
}

.offline h2
{
    width: 100%;
    font-size: 28px;
    font-weight: normal;
    text-align: center;
}