html, body, #wrap {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

a {
    text-decoration: none;
    color: #000;
}

div.section {
    height: 100%;
}

div#main {
    width: 100%;
    height: 100%;
    background: rgb(94,143,194);
    background: linear-gradient(146deg, rgba(94,143,194,1) 13%, rgba(0,200,208,1) 72%);
}

div.main_section {
    display: flex;
}

.custom-shape-divider-bottom-1653575632 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1653575632 svg {
    position: relative;
    display: block;
    width: calc(138% + 1.3px);
    height: 409px;
}

.custom-shape-divider-bottom-1653575632 .shape-fill {
    fill: #FFFFFF;
}

div#mouse {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scrolldown {
    color: #fff;
    margin-bottom: 5px;
}

.mouse {
    width: 25px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 20px;
    display: flex;
}

.mouse-wheel {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    margin: auto;
    animation: move-wheel 1s linear infinite;
}

@keyframes move-wheel {
    0% {
        opacity: 0;
        transform: translateY(-1rem);
    }

    100% {
        opacity: 1;
        transform: translateY(1rem);
    }
}

div.title_section {
    width: 80%;
    /* margin: auto; */
    padding: 200px 200px 100px 200px;
}

h1#title {
    color: #fff;
}

h3#subtitle {
    color: #fff;
}

div.bitcoin_img_section {
    padding: 190px 200px 0px 0px;
}

div.bitcoin_img_section img {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

div.go_select_page_section {
    display: flex;
    margin-top: 20px;
}

div.go_select_page_section a {
    background-color: #96C5FB;
    color: #ffffff;
    padding: 20px 40px;
    border-radius: 5px;
    transition: all 200ms ease-in;
}

div.go_select_page_section a:hover {
    filter: brightness(85%);
}

div#description {
    display: flex;
}

div.code_box {
    width: 50%;
    height: 700px;
    margin: auto;
    background-color: #000;
    border-radius: 10px;
    box-shadow: -6px 10px 32px 1px #000000;
}

div.box_header {
    height: 40px;
    width: 100%;
    background-color: #262626;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

div.box_header span {
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

span#red {
    background-color: #ff5f55;
    border: 1px solid #ff5f55;
    border-radius: 50%;
    margin-right: 8px;
    margin-top: 13px;
    margin-left: 15px;
}

span#yellow {
    background-color: #ffc02b;
    border: 1px solid #ffc02b;
    border-radius: 50%;
    margin-right: 8px;
}

span#green {
    background-color: #24cc3e;
    border: 1px solid #24cc3e;
    border-radius: 50%;
    margin-right: 8px;
}

div.code_body {
    width: 90%;
    margin: auto;
}

div.code_body code {
    color: #fff;
    font-size: 16px;
}

blockquote {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
}

div.code_description {
    width: 40%;
    /* height: 100px; */
    text-align: center;
    padding: 200px 0 200px 0;
}

div.code_description h1 {
    margin-bottom: 100px;
    display: none;
}

div.code_description h1#desc1 {
    background: linear-gradient(to right, #fbcac9, #8ca6ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

div.code_description h1#desc2 {
    background: rgb(94,143,194);
    background: linear-gradient(146deg, rgba(94,143,194,1) 13%, rgba(0,200,208,1) 72%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

div.code_description h1#desc3 {
    background: rgb(131,58,180);
    background: linear-gradient(90deg, rgba(131,58,180,1) 28%, rgba(253,29,29,1) 57%, rgba(252,176,69,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}