#about-section {
    display:none;
}
#about-section.show {
    display:block;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 250px;
    margin-right: 250px;

    h1{
        margin:0;
        font-size: 4rem;
    }
}

.about-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.about-links{
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 10px;

    a{
    color: var(--option-border-checked);
    text-decoration: none;
    }
}

.about-section-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;

    height: 100dvh;

    border-bottom: 1px solid var(--text);
}

.about-section-use {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;

    min-height: 100vh;

    border-bottom: 1px solid var(--text);
}

.about-section-use-2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex: 1;

    gap: 30px;

    min-height: 70vh;

    div{
        width: 45%;
        height: 300px;
        top: 25%;
    }
    h2{
            text-align: left;
            color: var(--option-bg-checked);
        }
        p{
            text-align: justify;
        }
}

.use-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;

}

.use-item{
    width: 24.5%;
    height: 330px;
    border-radius: 15px;
    color: var(--text);

    &:hover{
        box-shadow: 0 4px 12px var(--text);
        transform: translateY(-5px);
        transition: all 0.5s ease;
    }

    h3{
        font-size: 1.5rem;
        color:var(--bg);
        margin: 0;
    }
    p{
        text-align: justify;
    }
}

.use-icon-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
    padding-right: 20px;
    height: 70px;
    background:var(--option-bg-checked);
    border-radius: 15px 15px 0 0 ;

}

.use-icon{
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    font-weight: 1000;
    color: var(--bg);
    border: 5px solid var(--bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.use-content{
    width: 100%;
    padding: 20px;
}

.use-icon-line{
    flex: 1;
}