#main-icon {
    width: 100%;
    height: 450px;
    
    object-fit: cover;
    overflow: hidden;

    object-position: 0px 55%;

    display: flex;
    justify-content: center;
    image-rendering: auto;

    outline: 3px solid rgb(18, 18, 18);
    outline-offset: -3px;
}

.segment {
    background-color: #494949;
    width: 100%;
    height: 900px;

    flex-direction: column;
    display: flex;

    padding: 15px;
    padding-inline: 5%;

    gap: 35px;
}

.divider {
    align-self: center;
    justify-self: center;
    display: flex;

    width: 90%;
    height: 5px;

    border: dashed 5px #3f3f3f;
}

.content {
    align-self: center;
    justify-self: center;
    align-items: center;

    background-color: #3f3f3f;
    flex-direction: column;
    display: flex;
    height: 95%;
    width: 90%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 20px;

    gap: 10px;
}

.content-title {
    font-size: 50px;
    color: white;

    text-align: center;
    justify-content: center;

    padding: 10px;
}

.description {
    color: #ffffff; /* Gray text color */
    font-size: 16px;
    margin-bottom: 15px;

    text-align: center;
    width: 65%;
}

.information-card {
    display: auto;
    flex: 1 1 calc(25% - 20px); /* Each card takes 25% of the container width */

    justify-self: center;

    max-width: calc(25% - 20px); /* Prevent cards from exceeding their portion */
    min-width: 150px; /* Set a minimum width */

    padding: 15px; /* Padding for content */
    border-radius: 8px;

    background-color: rgb(50, 50, 50); /* Optional: Add background for cards */
}

.information-text {
    color: rgb(255,255,255);
    font-size: 35px;

    border-bottom: 3px white inset;

    justify-self: center;
}

.information-link {
    display: inline-flex;

    justify-content: center;
    align-items: center;
}

.information-list {
    padding: 0;

    justify-content: center;
    align-items: center;
    align-content: center;
}

.information-list img{
    display: flex;

    justify-self: center;

    width: auto;
    height: 95px;

    margin-top: 10px;
}

.information-list h3 {
    color: white;

    display: flex;

    justify-content: center;

    font-size: 50px
}

#project-exp {
    width: 100%;
}

.play {
    font-family: 'Montserrat', 'sans-serif';
    align-items: center;
    display: inline-block;
    text-align: center;
    background-color: #616161;
    color: rgb(255, 255, 255);
    font-size: 150%;

    cursor: pointer;

    border-radius: 5px;
    margin-top: 5px;
    height: 50px;
    width: 150px;

    border-radius: 10px;

    align-self: center;
    align-content: center;

    margin-bottom: 20px;
}

.play:hover{
    background-color: #757575;
    transform: scale(1.05);
    transition: .2s;
}