@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
*{
    font-family: 'Nunito', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    background: linear-gradient(#444a38, #10110e);
    height: 100%;
    overflow: auto;
}
body {
    line-height: 1.5em;
    letter-spacing: 0.2px;
    height: 100%;
    overflow: auto;
    padding-bottom: 20px;
    padding-top: 10px;
}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

[class*="col-"] {
    float: left;
    padding: 15px;
    width: 100%;
}
.row::after {
    content: "";
    clear: both;
    display: table;
}
/*CONTAINERS*/
.container{
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    overflow-wrap: break-word;
}
.container2{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-wrap: break-word;
}
.container3{
    text-align: center;
    vertical-align: middle; 
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    width: 100%;
}
a{
 color: #bbcf94;
}
/*MAIN*/
aside{
    max-width: 800px;
    color: #fff;
	padding-left: 10px;
	padding-right: 10px;
    background-color: rgb(72 80 57 / 95%);
    border-radius: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.aside-left {
    max-width: 400px;
    margin: 10px;
}
.aside-right {
    max-width: 400px;
    margin: 10px;
}
.bubble {
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon {
    margin: 5px;
}    
.icon img {
    width: auto;
    height: 100%;
    max-height: 10vh;
}
.icon2 {
    margin: 5px;
    text-align: center;
}    
.icon2 img {
    width: auto;
    height: 100%;
    max-height: 15vh;
}
.webtitle { 
    margin: 5px;
    font-size: 2.3vw;
    font-weight: bold;
    text-align: center;
}
.webtitle a {
    color: #fff;
    display: inline-block;
    word-wrap: break-word;
}
.webtitle a:hover {
    color: #8a9970;
}
.description {
    font-style: italic;
    text-align: center;
    font-size: 25px;
}
.nav {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}
.nav a {
    border: 0;
    color: #bbcf94;
    font-size: 20px;
}
.nav a:hover {
    transform: scale(1.2);
    color: #8a9970;
}
.nav i {
    margin:3px;
    font-size: 15px;
}
img{
    pointer-events: none;
}
/* CONTENT */
.main{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5%;
}
.left{
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.left img{
    max-width: 100%;
    padding: 10px;
}
/*----right-----*/
.right{
    color: #fff;
    width: 100%;
    display: flex;
}
.right img{
    width: 100%;
}
.content-box{
    max-width: 1080px;
    color: #fff;
    margin: 0;
	padding-left: 15px;
	padding-right: 15px;
    background-color: rgb(72 80 57 / 95%);
    border-radius: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 15px;
    line-height:20px;
    overflow: auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24)
}
.col-box{
    max-width: 1080px;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
    background-color: rgb(72 80 57 / 90%);
    border-radius: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 15px;
    line-height: 1.5em;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24)
}
/* GALLERY */
.gallery-box {
    padding-top: 15px;
    border-radius: 15px;
    margin-top: 15px;
    border: 1px solid #fff;
    display: inline-block;
    background-color: rgb(72 80 57 / 90%);
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24)
}
.gallery-box:hover {
    border: 1px solid #777;
}
.gallery-box img {
    max-height: 300px;
    line-height: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    vertical-align: middle;
}
.desc {
    padding: 10px;
    text-align: center;
    color: #fff;
}