.content {
    font-size: 20px;
    padding: 2px;
     border: 4px solid #dcdcdc;
     border-style: double;
}

p {
    font-size: 20px;
    padding: 20px;
    margin: 0;
}

.header {
    text-align: center;
    font-size: 20px;
    /*position: sticky;*/
    /*top: 0;
    /*Required for the stickiness */
}

.wrapper {
    width: 100%;
    display: grid;
    grid-gap: 6px;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh ;
}
@media screen and (min-width: 450px) {
    .header {
        position: sticky;
        top: 0;
        /*Required for the stickiness */
    }
}

@media screen and (min-width: 375px) {

    .wrapper {
        margin: 0 auto;
        grid-template-columns: 1fr;
        /* grid-auto-rows: minmax(150px, auto);*/
    }

    .header,
    .footer {
        flex: 0 1 100%;
        grid-column: 1 / -1;
        /* needed for the floated layout */
        clear: both;
    }
}

.wrapper>* {
    background-color: #fff;
    color: #000000;
    border-radius: 2.5px;
    font-size: 150%;
    /* needed for the floated layout*/
}

/* We need to set the widths used on floated items back to auto, and remove the bottom margin as when we have grid we have gaps. */
@supports (display: grid) {
    .wrapper>* {
        width: auto;
        margin: 0;
    }
}


.greeting {
    margin: 0em 0 4em 0;
    text-align: center;
    font-family: helvetica;
    font-size: 18px;
    color: #000;
    border: 0;
   
}

.greeting h3{
    text-decoration: underline;
    padding: 10px 10px 10px 10px;
    color: #191970;
}
.greeting span{
    font-style: italic; 
}
.greeting p{
    font-size: 16px;
    padding: 20px 20px 0 20px;
}

button-gig {
    margin: auto;
    display: block;
    text-align: center;
    width: 10em;
    cursor: pointer;
}

/* BUTTON STYLES */
button-gig {
    padding: 12px 16px;
    font-family: helvetica;
    font-size: 16px;
    color: #fff;
    background: #191970;
    border: 2px solid #dcdcdc;
    border-radius: 30px;
    border-style: double;
    transition: all 0.3s ease 0s;
}

button-gig:hover {
    background: green;
    color: #fff;
    box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
    transform: translateY(-7px);
}


button-hear {
    margin: 0;
    display: inline-block;
    max-width: 100%;
}

/* BUTTON STYLES */
button-hear {
    padding: 12px;
    font-family: helvetica;
    font-size: 14px;
    color: #fff;
    background: #191970;
    border-radius: 30px;
    transition: all 0.3s ease 0s;
}

button-hear:hover {
    background: yellow;
    color: #000;
    font-weight: bold;
    box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
    transform: translateY(-7px);
}
/* END OF BUTTON STYLES */