<br />
<b>Deprecated</b>:  The each() function is deprecated. This message will be suppressed on further calls in <b>/home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php</b> on line <b>456</b><br />
*, *:before, *:after {
    box-sizing: border-box;
    margin-block-end: 0;
    margin-block-start: 0;
}

/*COLOR VARIABLES*/
body {
    /*FIRST SET OF COLOR*/
    --highlight-color:rgb(201, 161, 0);
    --light-color:#ffd761;
    --dark-color: rgb(13, 22, 24);
    --text-color: rgb(161, 161, 161);

    /*SECOND SET OF COLOR*/
    --primary-color:rgb(53, 53, 53);
    --secondary-color: rgb(245, 241, 241);
    --background-color: rgb(240, 233, 228);
    --grid-color: rgb(225, 219, 219);
    --square-size: 100px;
}

body {
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    position: relative;
    padding-bottom: 100px;
    overflow-x: hidden;
    cursor: none;
}

.grid {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;    
    position: absolute;
    padding: 0;
    background: transparent;
    background-image: linear-gradient(var(--grid-color) .05vw, transparent .05vw), linear-gradient(90deg, var(--grid-color) .05vw, transparent .05vw);
    background-size: 15px 15px; /*size of one square*/
    z-index: -1;
    margin-top: 120px;
    margin-bottom: 100px;
    width: 78vw;
    border-bottom: solid var(--grid-color) 0.5px;
    border-right: solid var(--grid-color) 0.5px;
}

.grid-index-2 {
    margin-top: 200vh;
    margin-bottom: 100px;
    width: calc(3vw*30 + .1em);
    height: calc(3vw * 10 + .1em);
    z-index: 3;
}

section {
    width: 75%;
    margin: auto;
}

/*PRE-MADE DIV*/


.div-row {
    margin-top: 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    margin: auto;
}

.div-column {
    display: flex;
    flex-direction: column;
}

.div-grid {
    display: flex;
    flex-direction: row;
    /* flex-wrap: wrap; */
    width: 100%;
}

.div-wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

/*BUTTONS*/

button {
    border: none;
    background-color: var(--secondary-color);
    color: var(--light-color);
    border-radius: 0;
    /* transition: .3s; */
    padding: 10px;
    cursor: none;
}

button:hover {
    background-color: var(--light-color);
    color: var(--secondary-color);
}

.simple-btn {
    padding: 10px;
    background-color: var(--light-color);
    color: var(--secondary-color);
    text-decoration: none;
    margin: 20px 0;
    margin-block-end: 20px;
    margin-block-start: 20px;
    margin-right: 10px;
}

.btn-more {
    color: var(--primary-color);
    border: solid 2px var(--primary-color);
    padding: 0 10px;
    padding-left: 20%;
    margin-top: 10px;
    text-decoration: none;
    overflow: hidden;
    text-transform: uppercase;
    display: block;
    position: relative;
    width: fit-content;
    z-index: 3;
}

.btn-more:hover {
    background-color: var(--background-color);
    font-weight: 500;
}

.btn1 {
    border: solid 1.5px var(--dark-color);
    background-color: var(--light-color);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 10px;
    color: var(--dark-color);
    border-radius: 0;
    padding: 10px;
    cursor: none;
    width: fit-content;
    margin: 0 5px;
    line-height: 0px;
}

.btn1:hover { 
    background-color: white;
}

#blog-section {
    width: 75%;
    margin-bottom: 50px;
}

#landing-section {
    margin-bottom: 20px;
    width: 75%;
}

#landing-blog-section {
    width: 75%;
}