.gift-certificate {
    width: 800px; 
    height: 600px; 
    margin: 10% auto; 
    border: 1px solid #9acfea; 
    font-family: Arial;    
    border-radius: 1em;
    overflow: hidden;
    position: relative;
}


.gift-certificate-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.gift-certificate h1, .gift-certificate h2, .gift-certificate a, .gift-certificate p {
    position: relative;
    z-index: 999;
    width: 100%; 
    text-align: center; 
}

.gift-certificate h1 {
    color: white;
	text-shadow: 0px 1px 2px #000;	
    font-size: 3em;
    margin-bottom: .2em;
}

.gift-certificate h2 {
    color: white;
	text-shadow: 0px 1px 2px #000;	
    font-size: 1em;
    margin: 0;
    padding: 0;
    margin-bottom: 5em;
}


.gift-certificate p {
    float: left;
    padding: 0;
    color: darkgray;
}

.gift-certificate a {
    float: left;
    padding: 0;
    color: blue;
    width: 100%;
    text-align: center;
    text-decoration: none;
    margin-bottom: .5em;
    font-size: 1.5em;
}


.gift-cert-spacer {
    float: left;
    display: block;
    height: 19em;
    width: 100%;
}

@media print {

    .gift-certificate {
        width: 500px;
        height: 380px;
    }
    
    .gift-certificate-bg {
        width: 500px;
        height: auto;
    }
    
    .gift-cert-spacer {
        height: 12em;
    }
    
    .gift-certificate h1, .gift-certificate h2 {
        color: black;
        margin: 0;
    }

    .gift-certificate h2 {
        margin-bottom: 1em;
        margin-top: .2em;
    }
    
    .gift-certificate a {
        margin-bottom: .5em;
        font-size: 1em;
    }

    .gift-certificate p {
        font-size: 8px;
        color: gray;
    }
    .gift-certificate p.gift-certificate-address {
        font-size: 8px;
    }
    
}