/*
    Black #212121
    Purple #40198c

*/

* {
    margin:0;
    padding:0;
    color:#eee;
    font-family:Times New Roman;
    overflow: hidden;
}

html,body {
    background-color:#000;
    width:100%;
    height:100%;
    overflow: hidden;
    z-index: 0;
    overscroll-behavior: none;
}


.container {
    height:100%;
    width:100%;
    position: absolute;
    display:flex;    
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.background {
    position:absolute;
    display:inline-block;
    height:100%;
    width:100%;
    background-size: cover;
    background-image: url('/backgroundbigger.png');
    background-position-x: center;
    background-position-y: center;
    z-index: 0;
    opacity: 0.2;
}

.bubble {
    padding: 10px;
    height: fit-content;
    width: fit-content;
    max-width: 300px;
    text-shadow: 0px 0px 10px #000;
}

.bar {
    display:flex;
    width: max-content;
    height: 50px;
    padding:10px;
    background-color: transparent;
    flex-direction: row;
    flex-wrap: no-wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.button {
    display:flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin:10px;
    height: 40px;
    width: 60px;
    background-color: #648;
    border-radius: 8px;
    font-size: 12px;
    user-select: none;
    text-decoration: none;
}

a {
    text-decoration: none;
    
}

#title {
    font-size: 72px;
    color:#648;
    user-select: none
}

@media only screen and (max-width: 600px) {
  .background {
    background-image: url('/backgroundrotated.png');
  }
}

