* {
    border: 0;
    margin: 0;
    padding:0;
    line-height: 1;
}
html, body {
    width: 100%;
    height: 100vh;
    font-size: 16px;
}
body {
    /*background-color: #CDDCDC;*/
    /*background-color: #CDDCDC;*/
    /* Cloudy Knoxville */
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);    background-blend-mode: screen, overlay;
    font-family: Helvetica Neue, Helvetica;
    color: black;
    height: inherit;
    padding: .5rem .5rem;
}
article {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100%;
}
header {
    display: grid;
    grid-template-rows: none;
    grid-template-columns: 1fr auto auto;
    grid-gap: 10px;
    text-align: left;
    justify-items: start;
    border-bottom: 2px solid #CFCFCF;
    min-height: 20px;
    padding: .5rem .5rem;
    font-size: 1rem;
}
.brand-logo{
    background-image: url("userMD.jpg");
    background-position: center; /* Center the image */
    background-repeat: no-repeat;
    height: 40px;
}
.brand-name{
    text-align: center;
    padding:  5px 0px;
}
main {
    margin: 10px;
    padding: 10px;
    font-size: 1.25rem;
}

.buttonS, .welcome {
    text-align: center;
}
.buttonS {
    /* background: #4B39D3;
    background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
     background-image: -moz-linear-gradient(top, #3498db, #2980b9);
     background-image: -ms-linear-gradient(top, #3498db, #2980b9);
     background-image: -o-linear-gradient(top, #3498db, #2980b9);
     background-image: linear-gradient(to bottom, #3498db, #2980b9);*/
    /* Solid Stone */
    background-image: linear-gradient(to right, #243949 0%, #4B39D3 100%);
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    border-radius: 28px;
    text-shadow: 0 3px 3px #555555;
    /*font-family: Arial sans-serif;*/
    color: #ffffff;
    font-size: 50px;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
}

.buttonS:hover {
    /*background: #3cb0fd;
    background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
    background-image: linear-gradient(to bottom, #3cb0fd, #3498db);*/
    /* River City */
    background-image: linear-gradient(to top, #243949 0%, #000000 100%);
    text-decoration: none;
}
.button {
    /*background: #3498db;
background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
background-image: -moz-linear-gradient(top, #3498db, #2980b9);
background-image: -ms-linear-gradient(top, #3498db, #2980b9);
background-image: -o-linear-gradient(top, #3498db, #2980b9);
background-image: linear-gradient(to bottom, #3498db, #2980b9);*/
    /* Solid Stone */
    background-image: linear-gradient(to top, #243949 0%, #4B39D3 100%);
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    border-radius: 28px;
    text-shadow: 0px 3px 3px #555555;
    font-family: Helvetica Neue, Helvetica;
    color: #ffffff;
    font-size: 12px;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
}

.button:hover {
    /*background: #3cb0fd;
    background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
    background-image: linear-gradient(to bottom, #3cb0fd, #3498db);*/
    /* River City */
    background-image: linear-gradient(to top, #243949 0%, #000000 100%);
    text-decoration: none;
}
footer {
    display: grid;
    grid-template-rows: none;
    grid-template-columns: 1fr auto;
    min-height: 20px;
    max-height: 40px;
    padding: 1rem 1rem;
    font-size: .75rem;
    margin-bottom: 1rem;
}
a {
    color: white;
    text-decoration: none;
}
.start a {
    color: black;
}
#ada {
    color: black;
    text-decoration: none;
}
#ada a {
    color: blue;
}
.contact {
    bottom: 1rem;
}
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10000 ; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    /*background-image: linear-gradient(to top, #5f72bd 0%, #9b23ea 100%);*/
    background-blend-mode: screen;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}
/* The Close Button */
.close {
    color: rgb(0, 0, 170);
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* Modal Header */
.modal-header {
    padding: 2px 16px;
    /*background-color: #5cb85c;*/
    /* New Life */
    background-image: linear-gradient(to right, #43e97b 0%, #38f9d7 100%);
    color: white;
}

/* Modal Body */
.modal-body {padding: 2px 16px;}

/* Modal Footer */
.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

/* Modal Content */
.modal-content {
    position: relative;
    /*background-color: #fefefe;*/
    background-image: linear-gradient(to top, #d5d4d0 0%, #d5d4d0 1%, #eeeeec 31%, #efeeec 75%, #e9e9e7 100%);
    margin: auto;
    padding: 2px 16px;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s;
}

/* Add Animation */
@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

@media (min-width: 600px) {
    body, div {
        font-size: 1.25rem;
        line-height: 1.25;
    }
    main, .buttonS {
        margin-left: auto;
        margin-right: auto;
        width: 50vw;
    }
}
@media (min-width: 800px) {
    body, div {
        font-size: 1.5rem;
        line-height: 1.5;
    }
    main, .buttonS {
        margin-left: auto;
        margin-right: auto;
        width: 50vw;
    }
}
