* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    margin: 0;
}

body {
    background-color: #121212;
    color: #e0e0e0;
}

.jumbotron {
    background: linear-gradient(315deg, #1A91ED 20%, #8FCDFF 100%);
    color: #f4f4f4;
}

a {
    color: #bb86fc;
}

a:hover {
    color: #3700b3;
}

input, .input-box {
    background-color: #333333;
    color: #e0e0e0;
    border: 1px solid #444444;
}

button, .my-btn, .btn-link {
    background-color: #333333;
    color: #e0e0e0;
    border: 1px solid #444444;
}

a {
    color: #337ab7;
    text-decoration: none;
}

a:hover {
    color: #23527c;
    text-decoration: underline;
}

a:focus {
    text-decoration: underline;
}

/* Reset button styles. */
button {
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    background-color: transparent;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
}

h2 {
    text-align: center;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
}

p {
    margin-top: 10px;
    margin-bottom: 10px;
}

.container-flex {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.extra-padding {
    padding: 2px 15px;
}

.info-para {
    margin: 5px 15px;
    text-align: center;
}

.img-responsive {
    display: block;
    height: auto;
    max-width: 100%;
}


.main-container {
    margin: 10px auto 25px auto;
    padding: 5px 20px;
}

.main-footer {
    margin: 35px 0;
}

.my-svg {
    display: block;
    height: 35px;
    width: 35px;
    margin: 5px auto;
}

.my-btn,
.btn-link {
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 2px 2px 4px grey;
    color: #292929;
    background-color: white;
    display: inline-block;
    margin: 10px auto;
    padding: 6px 12px;
    text-align: center;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.my-btn:hover,
.btn-link:hover {
    opacity: 0.8;
    text-decoration: none;
    box-shadow: 2px 2px 5px black;
}

.btn-link:hover {
    color: inherit;
}

.my-btn:focus,
.btn-link:focus {
    text-decoration: none;
}

.my-btn:active,
.btn-link:active {
    transform: translate(1px, 1px);
    filter: saturate(150%);
    outline: none;
}

.btn-lrg {
    min-height: 40px;
    font-size: inherit;
}

/* Pulled these gradients from Polymer's website */
.gradient-blue {
    background: linear-gradient(315deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%), 
                linear-gradient(315deg, #3FC7FF 0%, #00A3E6 100%);
}

.gradient-purple {
    background: linear-gradient(315deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%), linear-gradient(315deg, #AF6AFF 0%, #6700DF 100%);
}

.gradient-orange {
    background: linear-gradient(315deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%), linear-gradient(315deg, rgb(250, 149, 90) 0%, rgb(250, 112, 21) 100%);
}

.gradient-green {
    background: linear-gradient(315deg, rgba(78, 78, 78, 0.5) 0%, rgba(255,255,255,0) 100%), linear-gradient(315deg, #3fa931 0%, #1ea432 100%);
}

.gradient-grey {
    background: linear-gradient(315deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%), linear-gradient(315deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

.gradient-red {
    background: linear-gradient(315deg, rgba(114, 114, 114, 0.5) 0%, rgba(255,255,255,0) 100%), linear-gradient(315deg, #852c2c 0%, #cc3232 100%);
    color: black;
}

.contact {
    text-align: center;
}

.contact a {
    line-height: 1.2;
}

.contact h2 {
    text-align: center;
    text-decoration: underline;
}

.input-box {
    display: block;
    width: 100%;
    height: 35px;
    padding: 6px 12px;
    font-size: 14px;
    color: #555;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.input-box:focus {
    border-color: #66afe9;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}

.rainbow-anim { 
    background: linear-gradient(124deg, #377b42, #277b35, #1ddde8, #4374be);
    background-size: 1800% 1800%;

    -webkit-animation: rainbow 18s ease infinite;
    animation: rainbow 18s ease infinite;
}

@keyframes rainbow { 
    0% { background-position: 0% 82% }
    50% { background-position: 100% 19% }
    100% { background-position: 0% 82% }
}

@media (min-width: 600px)  {
    .container-flex {
        flex-direction: row;
    }

    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .main-container {
        width: 60vw;
    }

    .my-btn,
    .btn-link {
        width: 45%;        
    }
    
    .my-svg {
        height: 40px;
        width: 40px;
    }
}

/* Media query for landscape tablets or laptops / PC */
@media (min-width: 1000px)  {
    .container-flex {
        flex-direction: row;
    }

    .jumbotron h1 {
        font-size: 63px;
    }
    
    .main-container {
        width: 45vw;
    }
    
    .my-svg {
        height: 60px;
        width: 60px;
    }

    .my-btn,
    .btn-link {
        width: 30%;
    }
}

body {
    padding-bottom: 40px;

    overflow-x: hidden;
}

input {
    width: 30%;
}

.btn {
    margin-top: 15px;
}

.my-btn {
    width: 100%;
}

.input-box {
    margin-top: 5px;
    margin-bottom: 10px;
}

/* Going for mobile-first widths here */
.my-container {
    width: 80vw;
    margin: 5px auto;
}

/* Media queries for tablets */
@media (min-width: 600px)  {
    .my-container {
        width: 70vw;
        margin: 5px auto;
    }

    .my-btn {
        width: 45%;
    }
}

/* Media query for landscape tablets or laptops / PC */
@media (min-width: 1000px)  {
    .my-container {
        width: 50vw;
        margin: 5px auto;
    }

    .my-btn {
        width: 45%;
    }
}