body{
    margin: 0px;
    background-color: beige;
}
main{
    margin-left: 20px;
    margin-right: 20px;
}

h1{
    text-align: center;
}
h2{
    text-align: center;
    font-size: 40px;
}
h{
    font-size: 25px;
}
.navbar ul{
    list-style-type: none;
    background-color: #1f1f1f;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
}
.navbar a{
    color: white;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
}
.navbar a:hover{
    background-color: #2c2c2c;
}
.navbar li{
    float: left;
}

.split-container {
            display: flex;
            width: 100%;
            height: 95%;
            background-color: #f0f0f0;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
.split-left,
.split-right {
            flex: 1;
            overflow: hidden;
            text-align: center;
            transition: all 0.3s;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin: 5px;
        }

 .split-left {
            background-color: #186d1c;
            color: #000000;
            border: 2px solid rgb(255, 255, 255);

        }
 p {
            line-height: 30px;
          }

.split-right {
            background-color: #000000;
            color: #186d1c;
            border: 2px solid rgb(255, 255, 255);

        }


