* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: arial;
    height: 100%;
    background: black;
    display: flex;
}

canvas {
    /* background: red; */
}

#content {
    display: flex;
    height: 100%;
    flex: 1;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

.row:before,
.row:after {
    display: table;
    content: "";
    clear: both;
}

[class^='col-'] {
    float: left;
    box-sizing: border-box;
}

.col-1-12  { width: 8.333333333333332%; }
.col-2-12  { width: 16.666666666666664%; }
.col-3-12  { width: 25.0%; }
.col-4-12  { width: 33.33333333333333%; }
.col-5-12  { width: 41.66666666666667%; }
.col-6-12  { width: 50.0%; }
.col-7-12  { width: 58.333333333333336%; }
.col-8-12  { width: 66.66666666666666%; }
.col-9-12  { width: 75.0%; }
.col-10-12 { width: 83.33333333333334%; }
.col-11-12 { width: 91.66666666666666%; }
.col-12-12 { width: 100.0%; }



.wrap {
    max-width: 1200px;
    margin: 0 auto;
}


.section-head {
    background: rgb(29,17,64);
    background: linear-gradient(90deg, rgba(29,17,64,1) 0%, rgba(8,17,38,1) 100%);

    /* height: 100vh; */
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-around;
    /* padding: 40px; */
}

.section-head .right,
.section-head .left{
    width: 100%;
}

.section-head .left{
    text-align: center;
}

.section-head .right{
    color: rgba(255,255,255, 0.9);
    font-family: arial;
    /* text-align: right; */
}

.section-head .right .info{
    padding-top: 50px;
}

.section-head .right .info .item{
    font-size: 1.5em;
    padding: 10px 0px;
    transition: all 0.2s;
    cursor: pointer;
    overflow: hidden;
    line-height: 1em;
}

.section-head .right .info .item .pre{
    opacity: 0.3;
    display: inline-block;
    margin-right: 20px;
}

.section-head .right .info .item:hover {
    padding: 10px 2px;
}



.section-projects {
    background: url('img/square-circle.svg') no-repeat;
    background-size: 100%;
    color: #575170;
    padding-top: 200px;
    padding-bottom: 100px;
    box-shadow: 3px 3px 10px 10px rgba(0, 0, 0, 0.1);
}

.section-projects .title{
    padding: 30px 0px;
    text-align: center;
    font-size: 3em;
    background: rgba(255,255,255, 0.9);
    color: #ff5555;
    /* border-top: 3px solid red; */
}

.section-projects .item{
    width: 25%;
    padding: 0px 10px;
}

.section-projects .item .heading {
    margin: 0px;
}

.section-projects .item img{
    /* height: 200px; */
    border-radius: 5px;
}






.footer {
    padding: 20px 10px;
    background: #ff5555;
}


