/* Some default properties to begin with  */

* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    background-color: black;
  }

  html {
    cursor: none;
  }
  #cursor {
    height: 20px;
    width: 20px;
    border-radius: 20px;
    background-color: #E52323;
    border:2px solid #950404; 
    position: absolute;
    z-index: 3;
  }
  
  a {
    color: rgb(0, 0, 0);
    text-decoration: none;
  }
  
  ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  li {
    margin-right: 2rem;
  }
  
  img {
    width: 100%;
    height: auto;
  }
  
  .footer {
    padding: 2rem;
    text-align: center;
  }
  
  /* header styles begin here */
  .header {
    width: 100%;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: black;
  }
  
  .main-title {
    font-family: Helvetica, sans-serif;
    font-size: 1.5rem;
    text-align: center;
    color: white;
  }
  
  .navigation {
    display: none;
    font-family: Helvetica, sans-serif;
    font-size: 2rem;
  }
  
  .mobile-menu {
    position: absolute;
    font-family: Helvetica, sans-serif;
    text-decoration: underline;
    text-transform: uppercase;
    font-size: 1.3rem;
    color: white;
    top: 20px;
    left: 15px;
    z-index: 2;
  }
  
  .mobile-navigation {
    background: whitesmoke;
    min-height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Helvetica, sans-serif;
    font-size: 2rem;
    display: none;
  }
  
  .mobile-navigation li {
    margin: 0;
  }
  
  .header.open .mobile-navigation {
    display: flex;
    position: absolute;
    background: whitesmoke;
  }
  
  .header.open .mobile-menu {
    color:black;
  }
  

  .nycslice {
    text-decoration: underline;
    color: deepskyblue;
  }
  
  .main-content {
    display: flex;
    flex-direction: row-reverse;
  }

  /* second section */
  .second-section {
    background: whitesmoke;
    display: flex;
    padding: 3rem;
    
  }

  .text{
      margin: 0;
      margin-right: 2rem;
}

  .pizz {
    max-width: 90%;
    height: auto;
    object-fit: cover;
    margin-left: 3rem;

}

  .second-section p {
  font-size: 1.5rem;
  font-family: Helvetica, sans-serif;  
  color: black;
  margin-top: -10pt;
  margin-bottom: -9pt;
  }
  
  .takeme h2 {
    font-size: 1.5rem;
    font-family: Helvetica, sans-serif;  
    color: deepskyblue;
    text-decoration: underline;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
  }

  img 
  {
  height: 100%;
  width: 100%;
  object-fit: cover;
  }
  /*Used to ensure that the images maintain their full height and width*/
  

  .marquee1 {
    width: 10vw;
    overflow: hidden;
  }
  
.circle1 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #E52323;
  border: 3px solid #950404;
  animation: marquee 5s linear infinite;
}

.circle2 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #E52323;
  border: 3px solid #950404;
  animation: marquee 5s linear infinite;
}
  
  /* media query for desktop values */
  @media only screen and (min-width: 800px) {
    .header {
      justify-content: space-between;
      
    }
  
    .main-title {
      text-align: left;
      font-size: 2rem;
    }
    .navigation {
      display: flex;
      flex-direction: row;
      font-size: 1.7rem;
      font-style: italic;
    }
  
      ul{
      display: flex;
      list-style-type: none;
      align-items: center;
  }
  
    ul li a{
      display: inline-block;
      padding: 0 20px;
      text-decoration: none;
      color:white;
  }
  
  li a::after{
      content:'';
      display: block;
      height: 4px;
      width: 0;
      background: white;
      transition: all .5s;
  }
  
  li a:hover::after{
      width: 100%;
  }
  
    .mobile-menu {
      display: none;
    }
  
    .first-section {
      height: 8vh;
      
    }
  
    .second-section {
      background: rgb(0, 0, 0);
    }
  
    .second-section p {
      font-size: 1.5rem;
      font-family: Helvetica, sans-serif;   
  color: whitesmoke;
    }

  }
  
  