*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgb(0, 0, 0, 0.75);
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Oxygen,
        Ubuntu,
        Cantarell,
        "Open Sans",
        "Helvetica Neue",
        sans-serif;
}

body {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    font-family: sans-serif;
    color: rgb(0, 0, 0, 0.75);
    overflow-x: hidden;
}

/* Container for centering content with max-width */
.container {
    max-width: 768px;
    margin: 0 auto;
    width: 100%;
}

hr {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

h1 {
    font-size: 24px;
    font-weight: lighter;
    margin-bottom: 1rem;
}

h2 {
    font-size: 24px;
    font-weight: lighter;
    margin-bottom: 1rem;
}

h3 {
    font-size: 22px;
    font-weight: lighter;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.header img {
    height: 120px;
    border: rgb(0, 0, 0, 0.15) 1px solid;
    border-radius: 24px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 4px 0px;
}

.link {
    min-height: 60px;
    padding-left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.link:hover {
    color: rgb(80, 80, 80, 0.75);
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 730px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.box {
    position: relative;
    cursor: pointer;
    border: rgb(0, 0, 0, 0.09) 1px solid;
    border-radius: 24px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 4px 0px;
}

.box p {
    line-height: 21px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 16px;
}

.button-div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.button-div button {
    width: 100%;
    font-size: 14px;
    line-height: 14px;
    border: 0;
    border-radius: 24px;
    height: 36px;
    padding-left: 20px;
    padding-right: 20px;
}

.button-pink {
    background-color: rgb(255, 210, 249);
}

.button-gray {
    background-color: rgb(0, 0, 0, 0.05);
}

.button-gray:hover {
    background-color: rgb(0, 0, 0);
}

.box-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.box-title img {
    height: 46px;
}

.extension-box {
    background-color: rgb(240, 246, 249);
}

.extension-box-pink {
    background-color: rgb(255, 239, 249);
}