html, body {
    margin: 0;
    padding: 0;
    background-color:lightblue;
}

@font-face {
    font-family: marioFont;
    src: url(assets/TypefaceMarioWorldPixelFilledRegular-Yz84q.otf);
}

html {
    height: 100vh;
}

body {
    background-image: url("assets/background.png");
    min-height: 100%;
}

.flex-container {
    display: flex;
    flex-direction: row;
}

.sidebar {
    max-width: 270px;
    width: 33%;
    height: 100%;
    font-size: 20px;
    position: fixed;
    left: 0;
    text-align: center;
}

.sidebar-topper {
    width: 100%;
    height: 25vh;
    font-size: clamp(12px, 1.5vw, 17px);
    font-family: marioFont;
}

.sidebar-topper img {
    max-width: 152px;
    width: 75%;
    height: auto;
}

.warp-pipe-wrapper {
    height: calc(100% - 140px);
    max-width: 270px;
    width: 33%;
    position: fixed;
    top: 25vh;
    font-family: marioFont;
}

.warp-pipe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    image-rendering: pixelated;
    left: 0;
}

.sign {
    width: 100%;
    position: absolute;
    object-position: top;
    top: -170px;
}

.center {
    display: block;
    margin: auto;
}

.dummy-sidebar {
    flex: 33%;
    max-width: 270px;
}

.links {
    font-family: marioFont;
    font-size: clamp(12px, 1.5vw, 17px);
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: clamp(100px, 40vw, 330px);
    width: 100%;
}

.links a {
    color: black;
}

.links a:hover {
    color: darkslategray;
}

.main {
    flex: 66%;
    padding: 20px;
    font-size: clamp(12px, 3vw, 25px);
    font-family: marioFont;
}

.logo {
    max-width: 300px;
    max-height: 187px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: auto;
}

div.thumbnail {
    float: right;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    max-width: 320px;
    max-height: 180px;
    width: 100%;
    height: 100%;
    margin-bottom: 60px;
    margin-left: 5px;
}

img.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

div.thumbnail-text {
    font-size: 10px;
    text-align: center;
}

p {
    margin-bottom: 45px;
}
