
body {
    display: flex;
    flex-direction: column;
}

#title {
    display: flex;
    justify-content: center;
    font-family: "Georgia", "serif";
    font-size: min(8rem, 14vw);
    color: rgb(255, 183, 0);
    margin-top: min(5rem, 6vw);
    margin-bottom: min(3rem, 3.5vw);
    view-transition-name: title-transition;
    text-align: center;
}

#problems {
    display: flex;
    justify-content: center;
}

#problem-container {
    display: flex;
    flex-direction: column;
    background-color: rgb(237, 173, 116);
    max-width: 75rem;
    min-width: 0;
    flex: 0 1 75rem;
    border-radius: 2rem;
    border-color: rgb(151, 72, 32);
    border-width: 2rem;
    border: .4rem solid rgb(151, 72, 32);
    padding-top: 3rem;
    padding-bottom: 1rem;
    padding-left: clamp(.75rem, calc(-12rem + 16vw), 4rem);
    padding-right: clamp(.75rem, calc(-12rem + 16vw), 4rem);
    margin: 0 1rem;
}

#problem-container p {
    margin: 0;
}

#header {
    text-decoration: underline;
    margin-bottom: .5rem;
}

#problem-container div {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    display: center;
    /* margin-bottom: .25rem; */
    font-family: FreeMono, monospace;
    font-size: 2rem;
    /* text-wrap: nowrap; */
    /* overflow-x: hidden; */
    /* text-overflow: ellipsis; */
    align-items: center;
}

#problem-container .problem-link {
    position: relative;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.create-problem-link-container {
    display: flex;
    justify-content: center;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
}

.create-problem-link-container {
    display: flex;
    justify-content: center;
    margin: .5rem 0 0 0;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
}