@import url('https://fonts.googleapis.com/css2?family=Oxygen&family=Waterfall&display=swap');

html {
    scroll-behavior: smooth;
    font-size: 150%;
}

@media all and (max-width: 768px) {
    html {
        font-size: 100%;
    }
}

body {
    background-image: url("img/background.jpg");
    background-color: #C6D0C7;
    background-size: 100vw;
    background-repeat-y: repeat;
    margin: 0;
    scroll-behavior: smooth;
}

.menu {
    background-color: rgba(116, 140, 116, 0.80);
    color: #FFFFFF;
    margin: auto;
    height: 3rem;
    padding: 0.5rem;
    display: none;
    flex-direction: row;
    column-gap: 4rem;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 75vw;
    position: fixed;
    top: 0px;
    left: 12.5%;
    width: 75%;
}

.menu.sticky {
    display: flex;
}

.menuv {
    flex-direction: column;
    justify-content: space-evenly;
    row-gap: 2rem;
    height: auto;
    width: 3rem;
    left: 87.5%;
    top: 10%;
}

.menu img {
    height: 1.5rem;
}

.content {
    width: 75%;
    margin: auto;
    margin-top: 3rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-bottom: 3rem;
    padding-left: 5%;
    padding-right: 5%;
    background-color: rgba(255,255,255, 0.85);
    font-family: 'Oxygen', sans-serif;
    font-size: 1rem;
    text-align: center;
    box-sizing: border-box;
}

.flex-content, .page {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 3rem;
}

.page { max-width: 920px; }

.title-l, .title-m, .title-s { font-family: 'Waterfall', cursive; }
.title-l { font-size: 5rem; }
.title-m { font-size: 3rem; }
.title-s { font-size: 2rem; }

.para {
    line-height: 2rem;
}

.para::first-letter {
    font-family: 'Waterfall', cursive;
    font-size: 3em;
}

.size2 {
    font-size: 1.4em;
    letter-spacing: 0.1rem;
}

.button {
    background-color: #748C74;
    min-width: 120px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-family: 'Oxygen', sans-serif;
    color: #FFFFFF;
    font-size: 1rem;
    cursor: pointer;
}

.button:hover {
    background-color: #6A826A;
}

a.button {
    text-decoration: none;
}

.w80 { width: 80%; }
.w80 img { width: 100%; }

.divider1, .divider2 {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.divider1 {
    background-image: url("img/divider1.png");
    height: 2rem;
    width: 4rem;
}

.divider2 {
    background-image: url("img/divider2.png");
    height: 4rem;
    width: 16rem;
}

.double {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
    column-gap: 4rem;
    justify-content: space-around;
    row-gap: 3rem;
}

/*
@media all and (max-width: 1024px) {
    .double {
        flex-direction: column;
        row-gap: 3rem;
        align-items: center;
    }
}
*/

.my-table {
    width: 100%;
    display: flex;
    flex-flow: column;
}

.my-row {
    font-size: 1rem;
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    min-height: 3rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    column-gap: 2rem;
    row-gap: 0.2rem;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(152, 179, 176, 0.39);
}

.important-row {
    font-weight: 700;
}

.my-table .title-s {
    text-align: left;
    border-bottom: 1px solid rgb(120, 143, 141);
    padding-bottom: 0.1rem;
}

.my-cell { text-align: left; }

.my-cell.time  { width: 150px; flex-grow: 0; }
.my-cell.desc  { min-width: 350px; flex-grow: 1; }
/* .my-cell.desc  { width: calc(100% - 300px - 2*3rem); }  /* 100% - <other columns' width> - 2 * <column-gap> */
.my-cell.place { width: 150px; flex-grow: 0;  white-space: nowrap; }

.my-cell.place {
    padding-left: 1.5rem;
    background-image: url('img/pin.png');
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    /* box-sizing: border-box; */
}

@media all and (max-width: 768px) {
    .my-cell.time { width: 100px; }
    .my-cell.desc { min-width: 240px; }
    .my-cell.place { width: 100px; }
}

/*
@media all and (max-width: 1439px) {
    .my-row {
        flex-wrap: wrap;
        height: auto;
        flex-direction: column;
        align-items: start;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        row-gap: 0.2rem;
    }
    .my-cell.time, .my-cell.desc, .my-cell.place { width: auto; }
}
*/
