html, body {
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

* {
    font-family: "Montserrat", sans-serif;
}

.screen__demo {
    display: flex;
    height: 100vh;
    align-items: center;
}

.column__info {
    width: 25%;
    height: 100vh;
    padding: 0 5% 0 10%;
    display: flex;
    flex-direction: column;
}

.info__text {
    margin: auto 0;
}

.info__text h1 {
    font-weight: 600;
}

.navbar {
    background: #f2f4f7;
    height: 20px;
    padding: 5px;
    width: auto;
    border-radius: 15px;
    display: flex;
    justify-content: space-around;
    position: relative;
    bottom: 15%;
}

.navbar__btn {
    border: none;
    background: #98a2b3;
    border-radius: 8px;
    width: 16px;
    height: 16px;
    margin: auto 0;
    position: relative;
    cursor: pointer;
    z-index: 10;
}

.navbar__btn--active {
    background: #fd930e;
    box-shadow: 0 0 0 3px #e4e7ec;
}

.navbar__btn--unvisited::after {
    content: '';
    background-color: white;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 11;
}

.navbar__line {
    height: 2px;
    background: #e4e7ec;
    position: absolute;
    bottom: calc(15% + 9px);
    width: 85%;
}

.column__graphic {
    width: 60%;
}

.column__graphic video,
#step7-blob {
    max-height: 110vh;
    max-width: 60vw;
}

#step7-blob {
    position: absolute;
    top: 0;
    left: 40%;
    z-index: -1;
}

#step7-img {
    max-width: 50%;
    position: absolute;
    top: 5%;
    left: 45%;
    box-shadow: 0 0 4px #98a2b3;
}

.screen__email {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.screen__email h1,
.screen__email h2,
.screen__email form {
    margin: 0 auto;
    text-align: center;
}

.screen__email form {
    width: 50%;
}

.screen__email h2 {
    font-weight: normal;
    padding-top: 8%;
}

.icons__sharing {
    display: flex;
    justify-content: center;
}

.icons__sharing a,
.icons__sharing div {
    padding: 10px;
    text-align: center;
    cursor: pointer;
}

.icons__sharing a {
    color: inherit;
    text-decoration: none;
}

.icons__sharing a:hover svg path,
.icons__sharing a:focus svg path,
.icons__sharing a:active svg path,
.icons__sharing div:hover svg path,
.icons__sharing div:focus svg path,
.icons__sharing div:active svg path {
    stroke: #98a2b3;
}