/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

 /* Basic reset for styling */

@font-face {
  font-family: 'Menlo';
  src: url(/assets/Menlo-Regular-f4be85b2eacc91cfd9ad0a94cb38c851cc4be399db11f41de0f4ba0f5c93d946.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.bg-black {
  background-color: black;
}

body {
  font-family: 'Menlo', sans-serif;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

nav {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  z-index: 100;
}

nav ul {
  list-style: none;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: rgb(143, 143, 143);
  text-decoration: none;
  font-size: 18px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  z-index: -1;
  background-image: url(/assets/logo-53dd2cea3ee97a90297cb775a30f32725d4d08f2ad5b24e39db2375858126310.GIF);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.logo img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  nav ul li {
      margin: 0 10px;
  }

  nav ul li a {
      font-size: 16px;
  }
}

.mobile-view {
  display: none;
}
@media only screen and (max-width: 600px) {
  .desktop-view {
    display: none;
  }
  .mobile-view {
    display: block;
  }
}
