* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #dbe1d8;
    background-image: url(images/BG.png);
    background-repeat: no-repeat;
}

.container {
    max-width: 1200px;
    margin: 150px auto;
    background-color: rgb(255 255 255 / 70%);

}

.container-inner {
    width: 100%;
    float: left;
    background-color: rgb(255 255 255 / 70%);
    padding-bottom: 50px;
}

.header {
    width: 100%;
    float: left;
    margin: 30px 0
}

.header img {
    width: 200px;
    margin: 0 auto;
    display: block;
}

.header h1 {
    font-size: 26px;
    text-align: center;
    font-weight: 600;
}

.header p {
    font-size: 16px;
    text-align: center;
    font-weight: 400;
}


.about {
    width: 100%;
    float: left;
    margin: 30px 0
}

.about h1 {
    font-size: 20px;
    text-align: center;
    font-weight: 600;
}

.about p {
    font-size: 16px;
    text-align: center;
    font-weight: 400;
    width: 70%;
    margin: 0 15%;
}

.title {
    width: 100%;
    float: left;
    margin: 30px 0
}

.title h1 {
    font-size: 24px;
    text-align: left;
    font-weight: 600;
    margin: 0 40px;
    position: relative;
}

.title h1:before {
    width: 2px;
    height: 100%;
    background-color: #494949;
    content: '';
    position: absolute;
    left: -10px;
}

.codecontainer {
    position: relative;
    margin: 1% 2% 1%;
    border: 2px solid #d7d7d7;
    width: 96%;
    float: left;
    background-color: #fff;
    border-radius: 5px;
}

.preview {
    padding: 1em;
}

.preview button {
    padding: 10px 15px;
    border: 0;
    border-radius: 4px;
    background-color: #6d757d;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

.code {
    padding: 1rem;
    background-color: #f8f9fa;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.code pre {
    font-size: 1.2em;
    word-break: break-all;
    white-space: break-spaces;
    line-height: 1.8;
    color: #494949;
}

footer {
    text-align: center;
    width: 100%;
    float: left;
    background-color: #222222;
    padding: 30px;
    color: #ffffff;
}

footer a {
    color: #ffffff;
    font-weight: 600;
}

.codedownlnk {
    width: 100%;
    float: left;
    text-align: center;
}

.codedownlnk a {
    padding: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    background-color: #333333;
    border-radius: 4px;
    margin:5px;
}
