

html {
  box-sizing: border-box;
  
}
body {  
  background-size: cover;
  background-position: center;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.container {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
}
.container h1 {
  margin: 0;
}
.container .buttons {
  margin-top: 20px;
}
.container .buttons button {
  margin-right: 10px;
  padding: 5px 10px;
  border: none;
  background-color: #17cf95;
  color: white;
  cursor: pointer;
  font-size: 14px;
}
img {
  max-width: 100%;
  max-height: 100%;
  
}
.footer {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
}

.valididatedUserContainer {
    text-align: center;
}
.directVisitorContainer {
    text-align: left;
}
#valididatedUserContainer {
    display: none;
}
#directVisitorContainer {
    display: block;
}
.emailSuccessContainer {
    text-align: center;
}
#emailSuccessContainer {
    display: none;
}
#userEmail {
    width: 50%;
}

#subScreenContainer {
    border: 2px solid navy;
    padding: 0px 10px 10px 10px;
    margin-top:25px;
}
.prefsBtn, .sendInviteBtn {
    width: 300px;
    height: 50px;
    background-color: navy;
    color: skyblue;
    cursor: pointer;
    font-size: 16px;
}
.strike {
    text-decoration: line-through;
}

