@import url("buttons.css");



main > section {
    border: 0px solid black;
    border-radius: 20px;
    width: calc(100% - 40px); /* 40 to compensate for the padding */
    background-color: #1f1f1f;
    padding: 20px;
    transition: 0.1s;
    box-shadow: 0px 5px 10px rgba(1, 1, 1, 0.233);
    animation: appear ease-in-out;
    animation-timeline: view();
    animation-range: entry 0;
}

main > section:hover{
    background-color: #222222;
    box-shadow: 0px 5px 15px rgba(1, 1, 1, 0.37);
}

main > section > hr {
    border-color: #000000;
}

main > section > div {
    display: flex;   
}
main > section > div > div {
    width: 50%;
}

#sectionWho > div > .sectionRightDiv {
    display: flex;
    align-items: center;
    justify-content: right;
}

#sectionWho > div > .sectionRightDiv > div {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px solid;
    border-radius: 25px;
}

#sectionWho > div > .sectionRightDiv > div:hover {
    background-color: #2e2e2e;
    cursor: pointer;
}

#sectionWho > div > .sectionRightDiv > div > svg {
    fill: #3DB026;
}

#sectionWho > div > .sectionRightDiv > div > svg:hover {
    fill: #37c91a;
}

#sectionWhat > div > .sectionRightDiv {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 10px;
}

#sectionWhat > div > .sectionRightDiv > div {
    width: fit-content;
}

#sectionWhere > div > .sectionRightDiv {
    display: flex;
    align-items: center;
    justify-content: right;
}

#sectionWhere > div > .sectionRightDiv > iframe {
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 20px;
    height: 200px;
}

#sectionWhen > div > .sectionRightDiv {
    display: flex;
    align-items: center;
    justify-content: right;

}

#sectionWhy > div > .sectionRightDiv {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 0px;
}

#sectionWhy > div > .sectionLeftDiv {
    width: 100%;
}

@media (max-width: 900px) {
    #sectionWhat > div > .sectionRightDiv > :nth-child(1) {
        display: none;
        visibility: hidden;
    }
    #sectionWhat > div > .sectionRightDiv > :nth-child(2) {
        display: none;
        visibility: hidden;
    }
}

@media (max-width: 700px) {
    main > section > div {
        flex-direction: column;
    }
    .sectionLeftDiv {
        width: 100%;
    }
    .sectionRightDiv {
        width: 100%;
        display: flex;
        justify-content: center !important;
        align-items: center;
        padding: 0px;
        margin: 0px;
    }
}