﻿* {
    box-sizing: border-box;
}
body, html {
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    margin: 0;
    padding:0;
}

.splash {
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    background: url('../../Content/images/Background_20201121b.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    text-align: center;
}

p {
    width: 60%;
    margin: auto;
}

.textBlock img {
    width: 100px;
}

.textBlock {
    margin-top: 10%;
    background-color: rgba(255, 255, 255,0.70);
    padding: 10px;
    width: 100%;
    color: #c62568;
}

    .textBlock h1 {
        font-size: 25pt;
    }

div.contact {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding-bottom: 10px;
    color: white;
}

    div.contact p {
        width: 80%;
        font-weight: bold;
    }

.smmIcons {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
}

    .smmIcons img {
        margin-top: 5px;
    }

.nameDividerOneLine {
    display: inline;
}

.nameDividerTwoLines {
    display: none;
}

.sliderContainer {
    height: 100vh;
    max-height: 100vh;
    width: 100%;
    padding: 30px;
    background-color: #c62568;
}


@media only screen and (max-width: 450px) {
    p {
        width: 80%;
    }

    .nameDividerOneLine {
        display: none;
    }

    .nameDividerTwoLines {
        display: inline;
    }
}

@media only screen and (orientation: portrait) {
    .splash {
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }
}