*{
    font-family: Arial, Helvetica, sans-serif;
}
.redFont{
    color:red;
}
.greenFontRGB{
    color: #008000;
}
.boltBlueHex{
    font-weight: bold;
    color: #2e39ff;
}
.size16{
    font-size: 18px;
}
.italic24px{
    font-style: italic;
    font-size: 24px;
}
.whiteFontWithBrownBackground{
    color: white;
    background-color: saddlebrown;
}
.centerLineHeight30{
    text-align: center;
    line-height: 32px;
}
.justifyCAPITAL{
    text-align: justify;
    text-transform: uppercase;
}
.box400x300PurpleBorder1px30padding{
    width: 400px;
    height: 300px;
    border: 1px solid purple;
    padding: 30px;
}
.box2{
    width: 500px;
    height: 200px;
    background-color: #ff2025;
    margin:100px;
}
.hidden{
    display: none;
}
.box3{
    width: 100%;
    height: 150px;
    background-color: blue;
    padding: 50px;
    border: 10px solid yellow;
    box-sizing: border-box;
}
.gap{
    visibility: hidden;
}
.box4{
    width: 200px;
    height: 150px;
    color: rgb(51, 255, 14);
    opacity: 0.5;
}
.parent{
    position: relative;
}
.parentac{
    width: 400px;
    height: 300px;
    background-color: lightblue;
    position: relative;
}
.box6{
    width: 50px;
    height: 50px;
    background-color: pink;
    position: absolute;
    right: 10px;
    top: 50px;
}
.button1{
    width: 300px;
    height: 100px;
}
.button1:active{
    width: 300px;
    height: 100px;
    background-color: saddlebrown;
}

.button2{
    width: 200px;
    height: 500px;
    margin-top: 200px;
}

.button2{
    cursor: grab;
}

.box7{
    width: 200px;
    height: 500px;
    background-color: #2e39ff;
    margin-top: 200px;
    cursor: grab;
}

