/* Title and Text */
.h-content-title{
    font-family: "font-4-btn-lbl-hdr-ttl";
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 36px;
    padding: 2.5%;
    margin: auto;
    text-align: center;
}
.h-content-txt{
    font-size: 22px;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    padding: 1%;
    width: 70%;
    margin: auto;
    background-color:rgb(201, 173, 121);
    border-radius: 10px;
}

/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 9999; /* 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.9); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
    text-align: center;
}
/* The Close Button */
.closeBtn {
	color: #ffffff;
    border: 1px solid transparent;
    border-radius: 100%;
    padding: 0.25% 0.65%;
	float: right;
	margin-right: 5%;
    margin-top: 2%;
	font-size: 28px;
	cursor: pointer;
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    -ms-transition: all 0.15s ease;
    transition: all 0.15s ease;
}
.closeBtn:hover {
    border: 1px solid white;
}

/* Modal Button Styles */
.modalButton {
	color: rgb(0, 0, 0);
	background-color: transparent;
    box-shadow: 4px 4px 7.5px black ;
	border: 1px solid black;
	border-radius: 15px;
	padding: 1%;
	text-align: center;
	text-decoration: none;
	font-size: 20px;
	letter-spacing: 0.75%;
	cursor: pointer;
	width: 50%;
    margin: auto;
    margin-top: 2%;
    margin-bottom: 1%;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.modalButton:hover {
    background-color: #C7896E;
}

/* Modal Text/Link Styles */
.modalText {
	color: rgb(214, 214, 214);
	text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    margin: auto;
    padding: 0.25% 1%;
    border-radius: 10px;
    font-size: 26px;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.modalText:hover {
    border: 1px solid white;
}

/* Modal Title/Image Styles */
.modalTitle {
	padding: 2.5% 0;
    width: 75%;
    letter-spacing: 0.75%;
    margin: auto;
	color: #ffffff;
	text-shadow: 2px 2px 9px rgba(0, 0, 0, 0.95);
	font-size: 48px;
}
.modalImage {
	margin: auto;
	width: 70%;
}


@media screen and (max-width: 850px) {
    /* Title and Text */
    .h-content-title{
        font-size: 36px;
        padding: 2%;
    }
    .h-content-txt{
        font-size: 20px;
        padding: 1%;
        margin: auto;
    }
    /* Modal Button Styles */
    .modalButton {
        font-size: 20px;
    }
    /* Modal Title/Image Styles */
    .modalTitle {
        padding-top: 20%;
        width: 75%;
        letter-spacing: 0.75%;
        margin: auto;
        color: #ffffff;
        text-shadow: 2px 2px 9px rgba(0, 0, 0, 0.95);
        font-size: 28px;
    }
    .modalText {
        font-size: 22px;
    }
    .modalImage {
        margin: auto;
        width: 90%;
    }
}

@media screen and (max-width: 425px) {
    /* Title and Text */
    .h-content-title{
        font-size: 25px;
    }
    .h-content-txt{
        font-size: 18px;
        padding: 2%;
        margin-top: 1%;
    }
    /* Modal Button Styles */
    .modalButton {
        font-size: 16px;
    }
    /* Modal Title/Image Styles */
    .modalTitle {
        padding-top: 35%;
        width: 75%;
        letter-spacing: 0.75%;
        margin: auto;
        color: #ffffff;
        text-shadow: 2px 2px 9px rgba(0, 0, 0, 0.95);
        font-size: 20px;
    }
    .modalText {
        font-size: 18px;
    }
    .modalImage {
        margin: auto;
        width: 90%;
    }
}