body#css-zen-garden {
    /* background-color:lightseagreen; */
    
    background-image: linear-gradient(rgb(65, 185, 255), rgb(44, 117, 151), rgba(44, 117, 151, 0)), url("/images/IMG_60201.jpg");

    
    background-size: 100vw;

    background-position: bottom center;
    background-repeat: no-repeat;
}

.page-wrapper {
    /* background-color: rgba(255, 255, 239, 0.1); */
    font-family: Georgia, 'Times New Roman', Times, serif;

}

h1 {
    color: rgb(0, 190, 204);
    font-size: 50pt;
    transition-property: color;
    transition-duration: 0.5s;
}

h2 {
    color: #FFC;
    transition-property: color;
    transition-duration: 0.5s;
}

.intro {
    max-width: calc(100%/3);
    text-align: center;
    margin: auto;
    border-radius: 25px;
    padding: 20px 20px 20px;
    border: 5px;
    border-style:groove;
    border-color: bisque;
    background-color: rgba(255, 255, 255, 0.3);
    transition-property: background-color, color, max-width;
    transition-duration: 0.5s;
    color:cornsilk;
    text-shadow: 1px 1px rgb(6, 27, 85);
}
.intro p  {
    width: 60%;
    text-align: center;
    margin:auto;
}
p {
    font-weight: bold;
}
.intro:hover {
    max-width: 80vw;
    background-color: rgba(255, 255, 255, 0.6);
    color: rgb(6, 27, 85);
    transition-property: background-color, color, max-width;
    transition-duration: 0.5s, 0.5s, 0.5s;
    height:100%;
}

.intro:hover>header>h1,
.intro:hover>header>h2,
.intro:hover>div h3 {
    transition-property: color;
    transition-duration: 0.5s;
    color: rgb(211, 72, 30);
}

.intro a {
    text-decoration: none;
    color: rgb(211, 72, 30);
    text-shadow: none;
    
}

.main {
    margin-top: 20px;
    background-color: rgba(68, 196, 255, 0.4);
    margin-top: 40px;
    margin-left: 200px;
    margin-right: 200px;
    padding: 20px 20px 20px;
    max-width: calc(100%/1.8);
    margin: auto;
    margin-top: 50px;
    border: 5px;
    border-style: groove;
    border-color: bisque;
    border-radius: 25px;
    transition-property:max-width, background-color;
    transition-duration: 0.5s;
    color:#FFC;
    text-shadow: 1px 1px rgb(6, 27, 85);
    text-decoration: none;
}
.main p {
    max-width: 600px;
    margin:auto;
}
.main div {
    max-width: 60%;
    margin:auto;
}
.main a {
    color: rgb(211, 72, 30);
    text-decoration: none;
    text-shadow: none;
}
.main:hover {
    max-width: 80vw;
    background-color: rgba(255, 255, 255, 0.6);
    transition-property: margin-left, margin-right, background-color, max-width, color;
    transition-duration: 0.5s;
    color:rgb(6, 27, 85);
    /* text-shadow:1px 1px rgb(255, 255, 255); */
}
.main:hover a {
    text-decoration: none;
}
.intro:hover div {
    font-size:25px;
    transition-property:font-size;
    transition-duration: 0.5ss;
}
.participation>h3, .benefits>h3, .explanation>h3, .requirements>h3 {
    transition-property: font-size;
    transition-duration:0.3s;
}
.participation:hover>h3, .benefits:hover>h3, .explanation:hover>h3, .requirements:hover>h3{
   font-size: 50px;
   transition-property: font-size;
   transition-duration:0.3s;
   color: rgb(211, 72, 30);;
}
.participation:hover p, .benefits:hover p, .explanation:hover p, .requirements:hover p {
    font-size: 25px;
}

.sidebar {
    position: fixed;
    top: 10vh;
    left: 0;
    z-index:999;
    width:10%;
    height: 200px;

    
}
.designer-name {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: bold;
    color: rgb(255, 52, 52);
}
.design-name {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color:darkslategrey;
    font-weight: bold;
}
.wrapper {
    background-color: rgba(255, 255, 204, 0.7);
    border-radius: 0px 30px 30px 0px;
    padding-top:20px;
    padding-bottom:20px;
    border-style:groove;
    transition-property: background-color;
    transition-duration: 1s;

}
.wrapper>div>nav a {
    text-decoration: none;
}
.wrapper:hover {
    background-color:rgba(255, 255, 204, 0.95);
    transition-property: background-color;
    transition-duration: 0.5s;
    
}
.wrapper:hover h3 {
    color:rgb(211, 72, 30);
    transition-property: color;
    transition-duration: 0.3s;
    text-shadow:2px 2px#FFC;
}
.wrapper h3 {
    font-weight: bold;
    color:rgb(255, 255, 255);
    font-family:verdana;
    text-shadow: 1px 1px rgb(0, 60, 128);
}
.design-selection li, .design-archives li, .zen-resources li {
    list-style:square;

}
.zen-resources a {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-decoration: none;
    font-weight: bold;
    color:darkslategrey;
}
.design-archives a {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-decoration: none;
    font-weight: bold;
    color:darkslategrey;
}
abbr {
    color:rgb(17, 95, 160);
}