/* Hero Area */
#web-fullbackground {
    height:100%;
    width: 100%;
    background: linear-gradient( cyan, lightblue, pink, pink);
}
#web-herogrid {
    display:grid;
    box-sizing: border-box;
    padding-left: 30px;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    height: 30vw;
    overflow: hidden;
    border-bottom: 2px solid black;
}
.web-heroleft {
    color:black;
    padding-left: 30px;
}
.web-heroleft h2 {
    font-size: 100px;
    line-height: 1.0;
    font-family: 'playwritebasic';
    filter: drop-shadow(30px);
}
.web-heroleft p {
    font-family: 'notosans';
    font-size: 20px;
    line-height: 0.5;
}
.web-heroright {
    display: flex;
    color:white;
    margin-left: auto;
    justify-content: end;
    align-items: flex-end;
}
.web-heroright img {
    width: auto;
    max-width: 545px;
    height: 120%;
    max-height: 545px;
    object-fit: contain;
    object-position: bottom right;
}
/* Content Area */
#web-contentgrid {
    width:100%;
    display:grid;
    height: 100%;
    grid-template-columns: 1fr 1fr;
    padding-left: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 30px;
    justify-content: space-around;
    gap:60px;
    opacity: 80%;
    box-sizing: border-box;
    border-bottom: 17px solid white;
}
#web-contentgrid .web-contentleft {
    background-color: black;
    color:white;
    padding: 20px;
    text-align: center;
    border-radius: 25px;
}
#web-contentgrid .web-contentright {
    color:white;
    background-color: black;
    padding: 20px;
    text-align: left;
    border-radius: 25px;
}
#web-contentgrid h1 {
    font-family: 'playwritebasic';
}
#web-contentgrid p {
    font-family: 'notosans';
}
/* Image Gallery */
#web-imagegrid {
    min-height: 240px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 20px;
    gap:40px;
    background-color: rgba(36, 93, 250, 0.752);
    border-bottom: 3px solid white;
    box-sizing: border-box;
}
.web-imageblock {
    background-color:rgba(255, 255, 255, 0.156);
    font-family: 'playwritebasic';
    min-height: 180px;
    border-radius: 30px;
    color:white;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.web-imageblock2 {
    background-color:rgba(255, 255, 255, 0.156);
    font-family: 'playwritebasic';
    min-height: 50px;
    height:100px;
    border-radius: 30px;
    color:white;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.web-imageblock h1 {
    padding-left: 20px;
    font-size: 50px;
    margin: 0;
}
.web-imageblock p {
    padding-left: 20px;
    font-size: 20px;
    padding-right:15px;
    margin: 0;
}
.web-imageblock img {
    max-width: 120%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 25px;
}
.web-imageblock2 h1 {
    padding-left: 20px;
    font-size: 50px;
    margin: 0;
}
.web-imageblock2 p {
    padding-left: 20px;
    font-size: 20px;
    padding-right:15px;
    margin: 0;
}