*, *::after, *::before {
    box-sizing: border-box;
}

:root {
    --letter-size: 18rem;
    --letter-width-ratio: 0.8;
    --letter-height-ratio: 0.8;
    --purple: #934E70;
    --white: #fff;
    --yellow: #FBBC44;
    --font-family: "larken", sans-serif;
}

@media only screen and (max-width: 960px) {
    :root {
        --letter-size: 10rem;
    }
}

body {
    inset: 0;
    padding: 0;
    font-size: 18px;
    background-color: var(--purple);
    text-align:center;
}

main {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.container {
    position: relative;
    padding-block: 2rem;
    max-width: 80%;
    height: 100%;
    max-height: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content {
    margin-block:1.4rem;
}

table {
    font-family:var(--font-family);
    color:var(--white);
    font-size:2rem;
    width:100%;
    max-width:30rem;
    margin:auto;
    text-align:left;
    margin-block:4rem;
}

td:last-child{
    text-align:right;
}

.links {
    max-width: fit-content;
    margin: auto;
    margin-block-start: 2.4rem;
}

.footer-links {
    position:absolute;
    bottom:2rem;
    left:50%;
    transform:translateX(-50%);
    width:80%;
    max-width:80%;
}

.textbottomleft {
    position:inherit;
    left:0;
}

.textbottomcenter {
    position:inherit;
    text-align:center;
    left:50%;
    transform:translateX(-50%);
}

.textbottomright {
    position: inherit;
    right: 0;
}


.text-small a {
    font-size: 2.6vmin;
}

.links a {
    display: block;
}

.booking-button {
    padding:1rem 2rem;
    border:1px solid var(--white);
}


.container img {
    width: clamp(16rem, 25vw + 1rem, 450px);
}

.title{
    color:var(--yellow);
}

h1, h2, a {
    font-family: var(--font-family);
    font-size:4vmin;
    color: var(--white);
    font-weight: 500;
    font-style: normal;
    text-decoration:none;
    margin-block-end:1.4rem;
}

p {
    font-size: 2.6vmin;
    color: var(--white);
    font-family: var(--font-family);
    margin-block:0.2em;
}

.timetable {
    display:flex;
    flex-direction:column;
    max-width:400px;
    margin:auto;
}

.time {
    display:inherit;
    flex-direction:row;
    justify-content:space-between;
}


@media only screen and (max-width: 960px) {

    table {
        margin-block: 20vmin;
    }

    h1, h2, p, a {
        font-size:5.5vmin;
    }

    .text-small a {
        font-size: 4vmin;
    }

    p {
        font-size: 4vmin;
    }
}

#playground {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
}

    #playground .letter {
        display: inline-block;
        margin: 2px;
        width: calc(var(--letter-size) * var(--letter-width-ratio));
        height: calc(var(--letter-size) * var(--letter-height-ratio));

        
    /*outline:1px solid black;
    font-family: sans-serif;
    font-size: var(--letter-size);
    line-height: calc(var(--letter-size) * var(--letter-height-ratio));
        */
    }

button {
    width: 64px;
    height: 32px;
}

@media only screen and (max-width: 515px) {
    #playground {
        width: 80%;
        height: 80%;
    }
}
