*{
    margin: 0;
    padding: 0;
    color:white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    background-color:#191c24;
}

p,ol{
    color:rgb(212, 212, 212);
    font-size: 18px;
}
li{
    margin-bottom: 15px;
}

h1,h2,h3,h4,p{
    margin-bottom: 5px;
}

.underlined{
    border-bottom: 3px solid white;
    display: inline-block;
}

.page{
    max-width: 1150px;
    padding: 50px 80px;
    margin: 0px auto;
    height:100%;
    background-color:#282C35;
}
i{
    opacity: 0.65;
}
.code{
    background-color: rgba(255, 255, 255, 0.25);
    color:white;
    margin:5px 0px;
    display: inline-block;
    font-weight: 700;
    padding:2px 5px;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}

.code:hover{
    background-color: rgba(255, 255, 255, 0.75);
    color:#000000;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
.space{
    margin-bottom: 15px;
}
.center{
    margin: 0px auto;
    display: block;
}

@media (min-width:200px) and (max-width:768px) {
    .page{
        padding: 20px 30px;
    }
    img{
        width:100%;
    }
    p{
        font-size: 14px!important;
    }
    
}