#container{
    /*position: absolute;*/
    overflow: hidden;
}

#canvas_container{
    position: absolute;
    width: 100%;
    height: 150%;
    display: block;
}

#intro{
    display: block;
    margin-top: 80px;
    height: 130px;
    /*margin-right: 300px;
    /margin-left: 300px;*/
    margin-right: 20%;
    margin-left: 20%;
    border-radius: 10px;
    box-shadow:  15px 15px 20px black;
    background-color: antiquewhite;
    font-size: 18px;
    text-align: justify;
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding-bottom : 8px;
}

#intro h1{
    margin: 5px;
    margin-left: 5px;
    font-size: 20px;
}

#boxes{
    display: block;
    padding-top:0;
    margin: 100px;
    margin-top: 50px;
    /*height: 80%;*/
}

.box{
    display: inline-block;
    height: 340px;
    width: 470px;
    border: solid 1px black ;
    margin: 30px;
    border-radius: 20px;
    box-shadow:  15px 15px 20px rgba(21, 78, 183, 0.8);
    background-color: rgba(100, 149, 237, 0.8);
    text-indent: 35px;
    font-size: 18px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.box img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*z-index: 10;/*-1;*/
    opacity: 0;
    transition: all 1s;
}

.box h1{
    text-align: center;
    margin: 0;
    padding-top : 15px;
    padding-bottom: 15px;
    border-bottom: solid 1px black;
    font-size: 29px;
}

p{
    margin: 10px;
    text-align: justify;
}

/*.box img:hover{
    opacity:0;
}*/
