/*Home Page*/

html {
  font-size: 22px;
}

a {
  color: rgb(255, 240, 240);
}

a:visited {
  color: rgba(211, 211, 211, 0.347);
}

a:hover,
a:active {
  color: rgb(165, 61, 61);
}

table,
tr,
th,
td,
caption {
  border: 1px solid rgb(165, 87, 87);
  font-family: "Courier New", Courier, monospace;
  border-collapse: collapse;
  padding: 0.5rem;
}

body {
  background: blue;
  color: rgba(244, 230, 40, 0.941);
  font-family: helvetica Neue, arial, sans-serif;
  margin: 0;
  padding: 0;
}
h1 {
  color: white;
}
h2 {
  color: rgb(235, 134, 134);
}

/*Header*/

header {
  background-color: rgb(219, 47, 47);
  background-image: url("img/treeandsky.png");
  background-size: 100%;
  background-position: center;
  height: 400px;
  padding: 20px;
  text-align: center;
}

header a {
  color: rgb(22, 7, 7);
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 40px;
}

header .mobile {
  display: none;
}

header .logo a {
  background-image: url("img/brokentooth.png");
  background-size: 200px;
  background-repeat: no-repeat;
  display: inline-block;
  height: 200px;
  position: relative;
  text-indent: -9999999px;
  top: -40px;
  width: 300px;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

nav li {
  display: inline-block;
  margin-right: 20px;
}

/*RESPONSIVE RULES*/

@media screen and (max-width: 715px) {
  header {
    height: 250px;
    background-position: 0 -30px;
  }
  header .mobile {
    display: inline-block;
  }

  header .desktop {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  header {
    height: 200px;
    background-position: 0 -0px;
  }
}

/*FEATURES*/

.features {
  background: white;
  color: gray;
  padding: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.features figure {
  margin: auto;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  width: 200px;
}

.features figure img {
  border: 1px solid white;
  border-radius: 50%;
  box-shadow: gray 0 0 10px;
  width: 200px;
}

/*FOOTER*/

footer {
  background: black;
  color: gray;
  font-size: 12px;
  padding: 20px 20px;
  text-align: center;
}

/*DRAG AND DROP*/

#div1,
#div2 {
  float: left;
  width: 100px;
  height: 35px;
  margin: 10px;
  padding: 10px;
  border: 1px solid black;
}

/*360 Image*/

* {
  padding: 0;
  margin: 0;
}
#panorama-360-view {
  width: 100vw;
  height: 100vh;
}
