body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: white;/* default: #34495e; */
    outline: none;
    user-select: none;
}

/* sign in / log in styles */

.box {
    width: 300px;
    padding: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #191919;
    text-align: center;
    border-radius: 15px;
}
.box h1 {
    color: white;
    text-transform: uppercase;
    font-weight: 500;
}
.box p {
    color: white;
}
.centerTxt input[type = "text"],.centerTxt input[type = "password"] {
    border: 0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #3498db;
    padding: 14px 10px;
    width: 200px;
    outline: none;
    color: white;
    border-radius: 24px;
    transition: 0.25s;
}
.centerTxt input[type = "text"]:focus,.centerTxt input[type = "password"]:focus {
    width: 280px;
    border-color: #2ecc71;
}
.centerTxt input[type = "submit"] {
    border: 0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #2ecc71;
    padding: 14px 40px;
    outline: none;
    color: #2ecc71;
    border-radius: 24px;
    transition: 0.15s;
    cursor: pointer;
}
.centerTxt input[type = "submit"]:hover {
    background: #2ecc71;
    color: white;
}
.link-class {
    color: #2980b9;
}

/* heading functions */

.heading{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    background: #2E3133;
    position: relative;
    height: 50px;
    width: 100%;
}
.heading input[type = "button"], .generalBtn{
    border: 0;
    background: none;
    margin: 5px;
    text-align: center;
    border: 2px solid #2ecc71;
    padding: 0.75em 1.875em;
    outline: none;
    color: white;
    border-radius: 24px;
    transition: 0.15s;
    cursor: pointer;
}

/* styling for grid buttons */

.grid-container{
    width: 40%;
    height: 80%;
    border-radius: 15px;
    border: 1px solid #b0b0b0;
    display: flex;
    flex-direction: row;
}

.grid-btn{
    width: 100%;
    height: 100%;
    border: 1px solid #b0b0b0;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    user-select: none;
    background: white;
    color: #b0b0b0;
    font-size: 50px;
    transition: 0.15s;
    cursor: pointer;
}

/* button for css button page */

.generalBtn{
    font-size: 34px;
    margin: 50px 40px;
    color: #2ecc71;
    border: 3px solid #2ecc71;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 0.75em 1.1em;
}

.smallGBtn {
    outline: none;
    border:  2px solid #2ecc71;
    border-radius: 100px;
    color: #2ecc71;
    background: white;
    transition: 0.2s;
    cursor: pointer;
    height: 30px;
}
.smallGBtn:hover {
    background: #2ecc71;
    color: white;
}

/*color changing page*/

.colorContainer {
    position: absolute;
    height: 50%;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.15s;
}
.container:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.header {
    height: 6%;
    width: 100%;
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}
.colorBtn {
    padding: 6px 18px;
    margin: 12px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    outline: none;
    transition: 0.15s;
    cursor: pointer;
}
.colorBtn:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* heading functions continued */

.heading p{
    color: white;
    margin: 10px;
    border: 2px solid #2ecc71;
    border-radius: 1em;
    padding: 4px;
    cursor: pointer;
    transition: 0.15s;
}
.headingHighlight{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: black;
}
.heading input[type = "button"]:hover, .heading p:hover, .generalBtn:hover{
    background: #2ecc71;
}
.generalBtn:hover{
    color: white;
}
.select-box {
    display: flex;
    width: 400px;
}

/* website directories */

.navbar{
    display: flex;
    justify-content: left;
    position: absolute;
    top: 0px;
    left: 0px;
    align-items: center;
    cursor: pointer;
}
.navbar h1{
    color: white;
    float: left;
    text-align: center;
    padding: 13px 16px;
    text-decoration: none;
    font-size: 20px;
    border-radius: 25px;
    margin: 1px;
    transition: 0.15s;
}
.home{
    background: #2ecc71;
    border-radius: none;
}
.otherNav:hover{
    color: black;
    background: #ddd
}

/* about me styling */

.text{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%)translateY(-50%);
    background: white;
    width: 40%;
    color: black;
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: 0.25s;
    padding: 25px;
    margin: 25px;
}
.centerTxt{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background: white;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    color: black;
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 25px;
    margin-top: 60px;
    margin-bottom: 60px;
}
.text p, .centertxt p{
    max-width: 90%;
    font-size: 22px;
}
.textview {
    width: 328;
    margin: 5;
    font-size: 25;
    padding: 5;
    border: 2px solid #2ecc71;
    border-radius: 6px;
    outline: none;
}
.buttonCode{
    border: 1px solid black;
    padding: 15px;
    border-radius: 15px;
}
.content{
    display: flex;
    flex-flow: row wrap;
    padding: 20px;
    margin: 60px;
    justify-content: center;
}

/* button div control */

.bc{
    margin: 30px;
    padding: 10px;
}
.txtholder{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translateX(-50%)translateY(-50%);
}
.txtholder .text p{
    font-size: 17;
}
.smallGText {
    outline: none;
    border-radius: 100px;
    border: 2px solid #2ecc71;
    transition: 0.2s;
    height: 30px;
    padding: 10px;
    font-size: 15px;
    width: 130px;
}
.sliderMain{
    position: relative;
    width: 60%;
}
#slider{
    -webkit-appearance: none;
    background-color: black;
    width: 100%;
    height: 7px;
    border-radius: 3px;
    outline: none;
}
#slider::-webkit-slider-thumb{
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 3;
    position: relative;
}
#selector{
    height: 52px;
    width: 24px;
    position: absolute;
    bottom: -7px;
    left: 20%;
    transform: translateX(-50%);
    z-index: 2;
}
.SelectBtn{
    height: 24px;
    width: 24px;
    background-color: #2ecc71;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
}
#SelectValue{
    width: 48px;
    height: 40px;
    position: absolute;
    top: -20;
    left: -12;
    background: #2ecc71;
    border-radius: 4px;
    text-align: center;
    line-height: 45px;
    font-size: 20px;
    font-weight: bold;
    color: white;
}
.reload {
    border: 2px solid #2ecc71;
    background: #2ecc71;
    border-radius: 20px;
    margin: 10px;
    padding: 4px;
    outline: none;
    color: white;
    transition: 0.1s;
    cursor: pointer;
}
.reload:hover{
    border-color: #2ecc71;
    color: #2ecc71;
    background-color: white;
}
.info h1{
    padding: 60px;
    font-size: 35px;
}
.btm {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%)translateY(-50%);
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.info {
    position: absolute;
    width: 40%;
    height: 30%;
    left: 50%;
    transform: translateX(-50%)translateY(-50%);
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index: 5;
    transition: 0.6s;
    display: flex;
    flex: column;
    align-items: center;
    justify-content: center;
    background: white;
}

/* button 1 */

.button1 {
    border: none;
    text-align: center;
    background-color: #4CAF50;
    height: 60px;
    width: 120px;
    color: #fff;
    border-radius: 8px;
    font-size: 22px;
    cursor: pointer;
    transition: 0.6s;
    outline: none;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.button1:hover {
    border: none;
    border-radius: 8px;
    color: #4CAF50;
    background: #fff;
}

/* button 2 */

.btn {
    background-color: #E3E3E3;
    color: #222;
    padding: .5em 1em;
    border: none;
    outline: none;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.btn.btn-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-color: #0AF;

    transition: transform 350ms ease-in-out;
    transform: scaleX(0);
    transform-origin: left;
}
.btn.btn-slide:hover::before {
    transform: scaleX(1);
}
.btn.btn-slide {
    transition: color 350ms ease-in-out;
    z-index: 1;
    height: 60px;
    width: 150px;
    font-size: 22px;
}
.btn.btn-slide:hover {
    color: white;
}

/* button 3 */

.btn1 {
    background-color: #E3E3E3;
    color: #222;
    padding: .5em 1em;
    border: none;
    outline: none;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.btn1.btn1-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #0AF;

    transition: transform 350ms ease-in-out;
    transform: scaleX(1);
    transform-origin: left;
}
.btn1.btn1-slide:hover::before {
    transform: scaleX(0);
}
.btn1.btn1-slide {
    transition: color 350ms ease-in-out;
    z-index: 1;
    height: 60px;
    width: 150px;
    font-size: 22px;
}

/* button 4 */

.boxButton{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26;
    font-family: sans-serif;
    color: rgba(0, 0, 0, 0.5);
    height: 60px;
    width: 150px;
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.35s;
    cursor: pointer;
    outline: none;
    border: none;
}
.boxButton:hover{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    color: black;
}