﻿@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

* {
    box-sizing: border-box;
}
html, body {
    color: white;
    background-color: black;
    background: linear-gradient(to bottom, #000000 0%, #000000 530px,#333333 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    font-family: 'Roboto', sans-serif;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

a, a:visited {
    text-decoration: none;
    color: #4da31c;
}
    a:hover {
        text-decoration: underline;
        color: #B25CE3;
    }
img {
    max-width: 100%;
}


      /* Phone */
@media screen and (max-device-width: 481px) {
    body {
        font-size: 16pt;
        background-color: black;
    }

    contactblock {
        border: 2px solid #333;
        padding: 0 25px 15px 25px;
        margin: 30px;
        border-radius: 25px;
        background-color: #222;
        display: block;
    }
    contactheader {
        font-weight: bold;
        display: block;
        margin: 5px 0;
    }
    contactline {
        font-size: 12pt;
        display: block;
    }
}
      /* Tabet and Wider */
@media screen and (min-device-width: 481px) {

    contactblock {
        vertical-align: top;
        border: 1px solid #333;
        padding: 0 25px 15px 25px;
        margin: 0 20px;
        border-radius: 25px;
        display: inline-block;
    }
    contactheader{
        font-size: 20px;
        font-weight: bold;
        display: block;
        margin: 5px 0;
    }
    contactline{
        display: block;
    }
}