html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}

.holder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.titles {
    width: 100%;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.titles .title {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 2.75em;
    margin: 0.5em;
    margin-left: 40px;
    margin-right: 40px;
}

.titles .subtitle {
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    color: rgba(0,0,0,0.7);
    font-weight: 300;
    font-size: 1.2em;
    margin: 0.2em;
    margin-left: 40px;
    margin-right: 40px;
    margin-bottom: 40px;
}

.red-subtitle {
    color: rgba(255,0,0,0.7);
}

.image {
    width: 100%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image {
    background: url("img/snapring-phone.png") no-repeat center center;
    background-size: contain;
}

.footer {
    width: 100%;
    padding: 15px;
    padding-top: 28px;
    margin-top: -20px;
    background-color: #3f3f3f;
    text-align: center;
    clip-path: polygon(0 25%, 100% 0, 100% 100%, 0 100%);
}

.email {
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    color: white;
}

.email a {
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    color: red;
    text-decoration: none;
}