@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital@0;1&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: "Google Sans Flex", sans-serif;
  font-size: 1.2em;
  background-color: #FFF1E5;
  color: black;
  padding-bottom: 0px;
} 

/*Parallax*/
body, html {
  height: 100%;
  width: 100%;
}

 p {
	 padding-left: 5px;
	 padding-right: 5px;
 } 
 
.jumbo {
	font-family: 'Bebas Neue', Arial, sans-serif;
	background-image: linear-gradient(to bottom right, #990000, #ff1a1a);
	color: #fff;
	text-align: center;
	font-size: 2.4em;
	line-height: 1em;
	text-transform: uppercase;
	padding: 10px;
	margin-bottom: 20px;
}

.ofthe {
	font-family: 'Playfair Display', serif;
	text-transform: lowercase;
	font-size: 0.6em;
	font-style: italic;
	color: #ffcc00;
}
 
.intro {
	text-align: left;
}
 
.headingtext {
	text-align: center;
	font-size:1.5em;
	margin-left: 5%; 
	margin-right: 5%;
	color: #cc0000; 
} 
 
img {
	max-width: 100%;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
 }

 
.maintext {
padding-left: 15%;
padding-right: 15%;
font-size:1.4em; 
}

/*Round buttons*/

.round-button {
    width: 100%;
    height: 0;
    padding-bottom: 98%;
	margin-bottom: 20px;
    border-radius: 50%;
    border: 1px solid #cc0000;
	cursor: pointer;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 3px gray;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.round-button:hover {
    background: #cc0000;
}

.round-button img {
    display: block;
    width: 100%;
    padding: 0%;
    height: auto;
}

.nametext {
	text-align: center;
	text-transform: uppercase;
}

.boldtext {
	text-align: center;
	padding-top: 30px;
	font-size: 1.4em;
}

.post {
	text-align: center;
	font-weight: bold;
}

.iconrow {
	margin-left: 5%;
	margin-right:5%
}

/* The Modal (background) */
.w3-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* 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 {
    color: #fff;
	background-color: #b20401;
    margin: 10% auto; /* 10% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 90%; /* Could be more or less, depending on screen size */
	border-radius: 0px;
}


.footer {
	background-color: #fff;
	color: #000;
	text-align: center;
	font-weight: 300;
	line-height: 1em;
	text-transform: uppercase;
	padding-top: 20px;
}

.button {
	background-color: #660066;
    border: none;
    color: white;
    padding: 5px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.button:hover {background-color:green}