@import "variables.css";

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-family: "Montserrat", sans-serif;
  margin: 0 3rem 0 3rem;
  overflow-x: hidden;
}

h1,
h2,
h3,
nav {
  font-family: "Bebas Neue", sans-serif;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 2px;
}

h1 {
  font-size: 3rem;
}

ul {
  list-style-type: none;
}

img {
  width: 40%;
  height: auto;
}

.float-right,
.float-left {
  max-height: none;
  width: 45%;
  border-radius: 3px;
  /* border: 2px solid var(--highlight-color); */
}

.float-right {
  float: right;
  margin-left: 20px;
}

.float-left {
  float: left;
  margin-right: 20px;
}

.section {
  margin: 0 0 2rem 0;
}

.section .content {
  display: inline-block;
}

@media (max-width: 768px) {
  .mobile-vis {
    display: block;
  }
  .desktop-vis {
    display: none;
  }
}

/* Media query for screens larger than or equal to 768px */
@media (min-width: 769px) {
  .mobile-vis {
    display: none;
  }
  .desktop-vis {
    display: block;
  }
}
