﻿* {
    box-sizing: border-box;
}

html, body {
    color: black;
    font-family: Tahoma, sans-serif;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background: url(images/background.jpg);
    background-size: cover;
    background-position: center;
}

a {
    text-decoration: none;
    color: darkgreen;
}

    a:hover {
        text-decoration: underline;
        color: forestgreen;
    }

.welcome {
    font-size: 30px;
    color: white;
    -webkit-text-stroke: 1px black;
}
.heading {
    font-family: 'Carter One', cursive;
    font-size: 55px;
    color: white;
    -webkit-text-stroke: 0.1px black;
}

/* Phone */
@media screen and (max-device-width: 481px) {
    body {
        background-color: #DDDDDD;
        font-size: 16pt;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    img {
        padding: 10px;
    }

    .email {
        font-size: smaller;
    }

    .footer {
        text-align: center;
        font-size: x-small;
        background-color: rgba(255, 255, 255, 0.4);
        border-radius: unset;
        box-shadow: none;
        margin: auto;
        position: fixed;
        bottom: 0;
        width: 100%;
        padding: 0;
    }

    .notformobile {
        display: none;
    }
}
/* Tabet and Wider */
@media screen and (min-device-width: 481px) {
    html {
        background: url(bg.jpg) no-repeat center center fixed;
        background-size: cover;
    }

    body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    #header {
        margin: auto;
        margin-top: 20px;
        margin-bottom: 20px;
        background-color: rgba(221, 221, 221, 0.7);
        width: 800px;
        font-size: 20pt;
        padding: 10px 30px;
        text-align: center;
        border-radius: 2px;
        box-shadow: rgba(0,0,0,0.5) 10px 10px 10px;
    }

    .footer {
        margin: auto;
        text-align: center;
        font-size: small;
        background-color: #FFFFFF;
        border-radius: unset;
        box-shadow: none;
        position: fixed;
        bottom: 0;
        width: 100%;
        padding: 0;
    }
}
