body {
    margin: 0;
    overflow-x: hidden;
}


.content {
    background-color: white;
    /* margin: 1em; */
    display: flex;
    flex-direction: column;
    align-items: center;

    .in-content {
        /* background-color: var(--background); */
        border-radius: 1em;
        margin: 1em 0;
        width: 100%;
        font-size: 1em;

        

        .column-wrap {
            margin: 1em 2em;
            display: flex;
            flex-direction: column;
            gap: 2em;
            
            .bundle {
                display: flex;
                flex-direction: column;
                gap: 1em;

                .title {
                    font-weight: 700;
                }

                img {
                    width: 30px;
                }

                .change_subjects {
                    display: flex;
                    gap: 0.5em;
                    align-items: center;
                    text-decoration: none;
                    color: var(--dark-blue);
                    font-weight: 600;
                }
            }

            .divider {
                /* background-color: white; */
                background-color: var(--background);
                width: 100%;
                height: 5px;
                border-radius: 0.5em;
            }
            
            .submit {
                background-color: var(--dark-blue);
                font-size: 1.2em;
                border-radius: 1em;
                padding: 0.5em 1.5em;
                color: white;
                border: none;
                align-self: center;
                font-weight: 600;
                box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
                transition: box-shadow 0.1s linear;
                text-decoration: none;
                margin-bottom: 1em;
            }
        
            .submit:hover {
                box-shadow: none;
            }

            .info {
                align-self: center;
                text-align: center;
            }
        }
    }
}


/* desktop layout */
@media (min-width: 768px) {
    .content {
        .in-content {
            width: 500px;
        }
    }
}