* {
    outline: 0;
}

body {
    margin: 0;
}

nav {
    height: 7.5vh;
    width: 100%;

    align-items: center;
    display: flex;
    justify-content: flex-end;

    position: absolute;
    top: 1%;
}

a {
    text-decoration: none;
}

nav a {
    background-color: rgba(255,255,255,0.1);
    border-radius: 999px;
    color: white;
    font: 0.9em "Lora", sans-serif;
    width: 10%;
    text-align: center;

    margin: 0.5%;
    padding: 0.5%;
}

#language {
    background-color: rgba(0,0,0,0.3);
    width: 2%;

    margin: 1%;
}

header {
    background-image: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)), url("/header.jpg");
    background-size: cover;
    height: 100vh;
    width: 100%;
}

#logo {
    line-height: 0.8em;

    position: absolute;
    top: -1.5%;
    left: 1.5%;
}

#logo a {
    color: white;
    font: 1.2rem "Lora", sans-serif;
    line-height: 0px;
}

#motto {
    color: white;
    font: bold 6.5vw "Playfair Display", sans-serif;

    position: absolute;
    top: 33%;
    left: 7.5%;
}

#arrow {
    position: fixed;
    bottom: 1%;
    right: 2%;
}

#arrow a {
    color: grey;
    font-size: 2em;
}

#separator1 {
    background-color: white;
    height: 5vh;
    width: 100%;
}

#separator2 {
    background-color: white;
    height: 10vh;
    width: 100%;
}

section {
    color: black;
    font: 2rem "Playfair Display", sans-serif;
    height: 375vh;
    width: 100%;

    align-items: center;
    display: flex;
    justify-content: center;
}

section .side {
    height: 100%;
    width: 10%;

    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section .side div {
    height: 50%;
    width: 100%;
}

#aspect-ratio {
    padding-top: 375vh;
    width: 80%;

    position: absolute;
}

section #grid {
    height: 100%;
    width: 100%;

    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;

    position: absolute;
    top: 0;
    left: 0;
}

section #grid .subgrid {
    height: 25%;
    width: 100%;

    align-items: center;
    display: flex;
    justify-content: center;
}

section #grid .subgrid div {
    height: 100%;
    width: 50%;

    position: relative;
}

section #grid .subgrid .pic {
    height: 100%;
    width: 50%;
}

section #grid .subgrid .text {
    color: black;
    height: 100%;
    width: 50%;
}

section #grid .subgrid .text h1 {
    font-weight: normal;
    font-size: 4.7vw;

    position: absolute;
    top: -4%;
    left: 6%;
}

section #grid .subgrid .text p {
    color: rgba(0,0,0,0.7);
    font-size: 1.65vw;
    line-height: 3.2vw;

    position: absolute;
    top: 14%;
    left: 12%;
}

.left-text {
    width: 65%;
    height: 80%;
}

.right-text {
    width: 72%;
    height: 80%;
}

#spa-pic {
    background-image: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)), url("/spa.jpg");
    background-position: center;
    background-size: cover;

    position: relative;
}

#spa-pic::before {
    background-image: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)), url("/846.png");
    background-position: center;
    background-size: cover;
    content: '';
    opacity: 0;

    position: absolute;
    left: 0; top: 0; right:0; bottom: 0;

    -webkit-transition: opacity 1.5s ease-in-out;
    -moz-transition: opacity 1.5s ease-in-out;
    -ms-transition: opacity 1.5s ease-in-out;
    -o-transition: opacity 1.5s ease-in-out;
    transition: opacity 1.5s ease-in-out;
}

#spa-pic:hover::before {
    opacity: 1;
}

#billiards-pic {
    background-image: linear-gradient(rgba(251,233,223,0.3), rgba(251,233,223,0.2)), url("/billiards.jpg");
    background-position: 0%, 46%;
    background-size: cover;

    position: relative;
}

#billiards-pic::before {
    background-image: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)), url("/786.png");
    background-position: center;
    background-size: cover;
    content: '';
    opacity: 0;

    position: absolute;
    left: 0; top: 0; right:0; bottom: 0;

    -webkit-transition: opacity 1.5s ease-in-out;
    -moz-transition: opacity 1.5s ease-in-out;
    -ms-transition: opacity 1.5s ease-in-out;
    -o-transition: opacity 1.5s ease-in-out;
    transition: opacity 1.5s ease-in-out;
}

#billiards-pic:hover::before {
    opacity: 1;
}

#karaoke-pic {
    background-image: linear-gradient(rgba(212,0,255,0.05), rgba(212,0,255,0.05)), url("/karaoke.jpg");
    background-position: 0%, 42%;
    background-size: cover;    

    position: relative;
}

#karaoke-pic::before {
    background-image: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)), url("/828.png");
    background-position: center;
    background-size: cover;
    content: '';
    opacity: 0;

    position: absolute;
    left: 0; top: 0; right:0; bottom: 0;

    -webkit-transition: opacity 1.5s ease-in-out;
    -moz-transition: opacity 1.5s ease-in-out;
    -ms-transition: opacity 1.5s ease-in-out;
    -o-transition: opacity 1.5s ease-in-out;
    transition: opacity 1.5s ease-in-out;
}

#karaoke-pic:hover::before {
    opacity: 1;
}

#tabletennis-pic {
    background-image: url("/billiards.jpg");
    background-position: 90%, 50%;
    background-size: cover;

    position: relative;
}

#tabletennis-pic::before {
    background-image: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)), url("/821.jpg");
    background-position: center;
    background-size: cover;
    content: '';
    opacity: 0;

    position: absolute;
    left: 0; top: 0; right:0; bottom: 0;

    -webkit-transition: opacity 1.5s ease-in-out;
    -moz-transition: opacity 1.5s ease-in-out;
    -ms-transition: opacity 1.5s ease-in-out;
    -o-transition: opacity 1.5s ease-in-out;
    transition: opacity 1.5s ease-in-out;
}

#tabletennis-pic:hover::before {
    opacity: 1;
}

#separator3 {
    background-color: white;
    height: 7vh;
    width: 100%;
}

footer {
    height: 7vh;
    width: 100%;

    display: flex;
    justify-content: center;
}

footer div {
    align-items: center;
    border-top: 1px solid gainsboro;
    display: flex;
    height: 100%;
    justify-content: space-between;
    width: 80%;
}

footer div a {
    color: rgba(0,0,0,0.3);
    font: 0.9em "Lora", sans-serif;
    margin: 0.5%;
    padding: 0.5%;
    width: 10%;
    text-align: center;
}
/*
     FILE ARCHIVED ON 13:18:13 Jan 24, 2019 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 09:42:58 Mar 11, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.577
  exclusion.robots: 0.044
  exclusion.robots.policy: 0.033
  esindex: 0.011
  cdx.remote: 35.726
  LoadShardBlock: 77.487 (3)
  PetaboxLoader3.datanode: 61.91 (4)
  PetaboxLoader3.resolve: 100.442 (2)
  load_resource: 120.116
*/