/* RESET section, this reset CSS was not created by me. https://piccalil.li/blog/a-modern-css-reset/*/

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Body/Universal section */
/* The animated gradient Code below is not of my creation, it was found here https://codepen.io/P1N2O/pen/pyBNzX.*/
body {
	background: linear-gradient(-90deg, #35363a, #C7003C, #2c788f, #00c78b);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
/* end of Animation Code */
.page-wrapper {
    font-family:verdana;
    /* background-color: #2c788f; */
    color: #dadada;
    font-size: 1.0em;
}
a {
    text-decoration: none;
    color:#00c78b;
}

/* Initial section */
.intro{
    border-radius: 10px;
    background-color: #C7003C;

    width:50%;
    text-align:justify;

    padding:5px;
    margin-left: 25%;
    margin-right: 25%;
    margin-bottom: 20px;
}

#zen-intro header{
    text-align:justify;

}
#zen-intro header h1 {
    font-size:40px
}
.summary {
    text-align:justify;
}



/* Middle Section */
.main .explanation,.participation,.benefits {
    border-radius: 10px;
    background-color: #C7003C;

    float:left;

    width:32%;
    height:300px;

    padding:5px;
    margin-left:1%;
    margin-bottom:20px;
}

/* requirement section */
.requirements {
    border-radius: 10px;
    background-color: #C7003C;

    clear:both;
    float:none;

    padding:5px;
    margin-bottom: 20px;
    margin-left:20px;
    margin-right:20px;
}
.requirements h3 {
    text-align:center;
}

/* footer section */
footer {
    text-align:center;
    margin-bottom:20px;
}

footer a {
    border-radius: 10px;
    background-color:#C7003C;

    padding:5px;
    text-decoration: underline;
}


/* Hyperlink section */
.wrapper {
    display:flex;
}

.wrapper .design-selection,.design-archives,.zen-resources {
    border-top-left-radius:20px;
    border-top-right-radius:20px;
    background-color:#C7003C;

    width:300px;
    padding:5px;
}

.wrapper h3 {
    text-align:center;
}
.wrapper div{
    margin-left: 13.1%;
}