
@font-face {
    font-family: 'ShellHeavy';
    src: url('../assets/fonts/ShellHeavy.otf');
    font-weight: normal;
  }
body {
    background-color: #FFF;
    margin: 0px;
    overflow: hidden;
}
.view-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    padding-block-start: calc(var(--space) * 3rem);
    gap: calc(var(--space) * 3rem);
}
.background-wrapper {
    flex: .60;
    width: 100%;
    background: url(../assets/background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.background-wrapper img {
    width: 100%;
}
.logo-wrapper {
    width: calc(var(--space) * 11.5rem);
}
.logo-wrapper img {
    width: 100%;
}
.screen-image-wrapper {
    width: calc(var(--space) * 48.75rem);
}
.screen-image-wrapper img { 
    width: 100%;
}
.button-wrapper {
    background-color: #FFF;
    width: 100%;
    border-radius: 3rem 3rem 0 0;
    flex: .40;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: calc(var(--space) * 5rem);
    box-shadow: 0px -3px 7px 0px rgba(0,0,0,.1);
}
.button-wrapper h4 {
    margin: 0px;
    margin-top: calc(var(--space) * 2.5rem);
    font-family: "ShellHeavy";
    font-size: calc(var(--space) * 2.5rem);   
    color: #DD1D21;
}

.button-block figure {
    width: calc(var(--space) * 25rem);
    margin: auto;
}
.button-block figure.google-button {
    width: calc(var(--space) * 30rem);
}
.button-block img {
    margin: 0px;
    width: 100%;
}
p#env-tester {
    position: absolute;
    font-family: "ShellHeavy";
    font-size: 1.6rem;
    color: #FFF;
    background-color: rgba(0,0,0,.5);
    padding: 1.6rem;
}

@media only screen and (min-device-width : 320px) {
    :root{
        --space: .95;
    }
}
@media only screen and (min-device-width : 480px) {
    :root{
        --space: .75;
    }
}
@media only screen and (min-device-width : 768px) {
    :root{
        --space: .5;
    }
    .background-wrapper {
        background-size: contain;
    }
}
@media only screen and (min-device-width : 992px){
    :root{
        --space: .5;
    }
}
@media only screen and (min-device-width : 1200px) {
    :root{
        --space: .6;
    }
}