@charset "utf-8";

/*----------Copyright Kevin Wolff--------------*/

/*----------------------------GLOBAL STYLES----------------------------*/

* {
  box-sizing: border-box;
}

html {
	margin: 0;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

body {
  background-image: url("assets/virtual-bars-green.jpg");
  background-color: #000000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'Oxanium', Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  color: #FFF;
  padding: 0;
  margin: 0;
}

h1 {
  font-family: 'Tektur', Helvetica, sans-serif;
	font-size: 180%;
  font-weight: 400;
}

h2 {
  font-family: 'Tektur', Helvetica, sans-serif;
  font-weight: 400;
}

h3 {
  font-weight: 400;
}

a:link {
  color: #FFF;
  text-decoration: none;
  -moz-transition: all ease-in-out .5s;
  -webkit-transition: all ease-in-out .5s;
  -o-transition: all ease-in-out .5s;
  transition: all ease-in-out .5s;
}

a:visited {
  color: #FFF;
  text-decoration: none;
}

a:hover, a:focus {
  color: #FFF;
  text-decoration: none;
  text-shadow: 0 0 8px #0FD;
}

a:active {
  color: #FFF;
  text-decoration: none;
}

/*----------------------------LAYOUT STYLES----------------------------*/

main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 2rem;
}

#content {
  padding: 2rem;
  border: solid 1px #555;
  background-color: rgba(0,0,0,0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 20px rgba(0,0,0,.8);
  text-align: center;
}

#logo {
  width: 400px;
  max-width: 100%;
}

.menu {
  list-style: none;
  margin: 1rem 0 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.menu li {
  flex: 1 0;
  padding: 0;
  margin: 0;
}

.menu a {
  display: block;
  width: 100%;
  height: 100%;
  padding: .8rem 1rem;
  border: solid 1px #8ccbc2;
  background-color: rgba(0, 0, 0, 0.31);
}

@media only screen and (min-width: 650px) {
  
  #content {
    padding: 3rem;
  }
  
  .menu a {
    padding: 1rem 2rem;
  }
}