/* -----  Root  --------------------------------------------- */

:root {
  /*--darkgrey: #1d1d1b;*/
  --white: white;
  --black: black;
  --blue: #00ffff;
  /*--pink: #ec6aa0;*/
}

/* -----  General  --------------------------------------------- */

* {
  margin: 0;
  padding: 0;
}

body{
    padding: 0px;
    margin: 0px;
    font-size: 36pt;
    font-family: arial;
    color: var(--black);
    background: var(--white);
    transition: 2s;
}

a{
  color: inherit;
}

p{
  padding-bottom: 30px;
}

/* -----  Home Page  --------------------------------------------- */

.container1{
  position: fixed;
  top: 0px;
  left: 0px;
  width: calc(100vw - 60px);
  height: calc(100vh - 60px);
  padding: 30px;
/*  background: red;*/
  z-index: 0;
}

.container1 .display{
  display: block;
  width: 100%;
  /*color: var(--black);*/
  font-size: 15vw;
  line-height: 80%;
  padding-bottom: 5vw;
  /*transition: 2s;*/
  /*cursor: pointer;*/
}

.type{
  color: var(--black);
  transition: 2s;
  filter: blur(0px);
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -o-filter: blur(0px);
  -ms-filter: blur(0px);
}
/*.container1 span:hover{
  font-style: italic;
}*/


.menu_container{
  position: fixed;
  top: 30px;
  right: 30px;
  font-size: 34pt;
  text-align: right;
  z-index: 2000;
}

.container2{
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 100vh;
  margin-top: 100vh;
  /*background: red;*/
}

.container2 .img_thumb_container{
  position: absolute;
  /*display: inline-block;*/
  /*margin-bottom: 5vw;*/
  top: calc(50% - 20vw);
  left: calc(50% - 30vw);
  width: 60vw;
  height: 40vw;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 0px 15px var(--white);
  /*transform: translate(-50%, 0%);*/
}

.container2 .img_thumb_container img{
  position: absolute;
  left: 50%;
  width: auto;
  height: 100%;
  transform: translate(-50%, 0%);
}

.subcontainer2{
  position: relative;
  display: inline-block;
  width: 100vw;
  height: 100vh;
  /*background: blue;*/
}

.thumb_title{
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 60px;
  padding-right: 60px;
  text-align: center;
  border-radius: 90px;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.thumb_title:hover{
  background: var(--blue);
}

.thumb_hover_text{
  color: yellow;
}

.thumb_hover_text:hover{
  color: black;
}

svg{
  position: fixed;
  left: 30px;
  bottom: 30px;
  width: 90px;
  height: 90px;
  z-index: 100;
  cursor: pointer;
  transition: 2s;
}

circle{
  fill: var(--black);
  transition: 2s;
}

.about_container{
  position: fixed;
  top: 0px;
  left: -60vw;
  width: calc(50vw - 60px);
  height: calc(100vh - 60px);
  padding: 30px;
  font-size: 24pt;
  color: var(--white);
  background: var(--black);
  z-index: 1000;
  overflow-y: scroll;
  display: none;
  transition: 2s;
}

.info_button{
  cursor: pointer;
  z-index: 100;
}

.info_button:hover{
  text-decoration: underline;
}

.events_button{
  cursor: pointer;
}

.events_button:hover{
  text-decoration: underline;
}

@media screen and (max-width: 1000px) {
  .container1 .display{
    font-size: 20vw;
  }

  .container2 .img_thumb_container{
    top: 50%;
    left: 50%;
    width: calc(100vw - 60px);
    height: 60vw;
    transform: translate(-50%, -50%);
  }

  .about_container{
    position: fixed;
    top: 0px;
    left: -110vw;
    width: calc(100vw - 60px);
    height: calc(100vh - 60px - 90px);
    padding: 30px;
    padding-top: 120px;
    font-size: 24pt;
    color: var(--white);
    background: var(--black);
    z-index: 1000;
    overflow-y: scroll;
    display: none;
    transition: 2s;
  }
}

@media screen and (max-width: 500px) {
  .container1{
    padding: 15px;
  }

  .menu_container{
    top: 15px;
    right: 15px;
    font-size: 24pt;
  }

  svg {
    left: 15px;
    bottom: 15px;
    width: 60px;
    height: 60px;
  }

  .about_container {
    font-size: 18pt;
  }
}
