:root {
    --color-background: #ededed;
    --color-blue: #00033b;
    --color-orange: #ff6136;
}

body,
div,
p,
span,
input,
label,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
ol,
ul,
li,
figure,
svg,
a {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

body {
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: var(--color-background);
    display: flex;
}


body>#viewport {
    position: relative;
    width: 70px;
    transition: all 0.5s ease;
}

body>#viewport.full {
    width: 700px;
}


body>#viewport>.view {
    position: relative;
}

body>#wrapper {
    flex: 1;
    overflow: hidden;
}

body>#wrapper>iframe {
    height: 100vh;
    width: calc(100vw - 70px);
    margin:0;
    padding: 0;
    border: 0;
}

h1 {
    color: var(--color-orange);
    font-weight: 500;
    font-size: 32px;
}

.button {
    background-color: var(--color-orange);
    color: white;
    display: flex;
    justify-content: center;
    font-weight: 500;
    font-size: 26px;
    padding: 8px 20px;
}