body {
    margin: 0;
    margin-bottom: 0px;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 98vh;
    background-color: #2c2c2c;
    position: relative;
}

@media screen and (min-width: 1024px) {
    body {
        overflow: hidden;
    }
}

.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin-top: 50px;
}

.about-content {
    width: 70%;
    max-width: 1000px;
    background-color: #424242;
    padding: 50px;
    padding-right: 27px;
    padding-left: 60px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.about-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: -50px;
    margin-top: -50px;
}

.about-left, .about-right {
    width: 48%;
}

.about-left {
    padding-right: 10px;
}

.about-left .about-section ul li {
    margin-bottom: 15px;
}

.about-section {
    margin-bottom: 0px;
    margin-top: -20px;
}

.about-section h2 {
    color: #fff;
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 400;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.about-section ul {
    list-style-type: none;
    padding: 0;
}

.about-section ul li {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
    position: relative;
}

.about-left .about-section ul li i {
    font-size: 1rem;
    position: absolute;
    left: -30px;
    top: 5px;
}

.about-right .about-section ul li i {
    font-size: 1rem;
    margin-right: 5px;
    position: relative;
}

.about-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.about-right p {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.about-right p a {
    color: #fff;
    text-decoration: underline;
}

.about-right p a:hover {
    color: #ffd700;
    text-decoration: none;
}

.about-section li a {
    color: #fff;
    text-decoration: none;
}

.about-section li a:hover {
    text-decoration: underline;
}

/* touch device adjustments */
@media screen and (max-width: 767px) {
    body {
        height: auto;
    }

    .about-container {
        height: auto;
        margin-top: 0;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .about-box {
        flex-direction: column;
        margin-top: 0;
        margin-bottom: 0;
    }

    .about-left, .about-right {
        width: 100%;
        margin-bottom: 20px;
    }

    .about-content {
        padding: 20px;
    }

    .about-left {
        padding-left: 20px;
    }
}
