body, html {
    margin: 0;
    padding: 0;
}

/*****************************/
/******** TOP NAV BAR *******/
/***************************/
.navbar2 {
  overflow: hidden;
  background-color: #000;
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
}

.navbar-links2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 16px; /* Adjust margin as needed */
}

.navbar2 a {
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px /* top and bottom padding */ 30px /* left and right padding */;
  text-decoration: none;
  font-size: 17px;
}

.navbar2 a:last-child {
  margin-right: 0;
}

.navbar2 a:hover {
  background: #ddd;
  color: black;
}

.dropdown2 {
    position: relative;
    display: inline-block;
}

.dropdown-content2 {
    display: none;
    position: absolute;
    background-color: #000;
    min-width: 160px;
    z-index: 1000; /* Ensure a higher z-index value */
    top: calc(100% + 10px); /* Position dropdown below the parent link with some space */
    left: 0; /* Align dropdown with the left edge of the parent */
}

.dropdown-content2 a {
    color: #f2f2f2;
    padding: 12px 16px;
    display: block;
    text-align: left;
    text-decoration: none;
}

.dropdown-content2 a:hover {
    background-color: #ddd;
    color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}


.main {
    padding: 0px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 75px; /* Ensure there's enough space for the navbar */
    margin-bottom: 20px;
    position: relative;
    z-index: 1; /* Set z-index to be below dropdown menu */
}








/* Navbar container */
.navbar {
    top:0;
  overflow: hidden;
  background-color: #000;
  font-family: Arial;
  height: 70px;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 25px 30px;
  text-decoration: none;
}

/* Add a red background color to navbar links on hover */
.navbar a:hover {
  background-color: white;
  color: black;
}


/* NATE & ZO's PHONES */
@media only screen and (max-width: 430px) and (min-width: 330px){
 /* CSS that should be displayed if width is equal to or less than 360px and larger 
  than 100px goes here */

    .socials {

    }

    .socials table {
        
    }

    .socials img {
        padding-top: 15px;
        padding-right: 15px;
        height: 100px;
        width: 100px;
    }
}





@media only screen and (max-width: 1920px) and (min-width: 1281px){
 /* CSS that should be displayed if width is equal to or less than 1920px and larger 
  than 1281px goes here */

      .socials {

    }

    .socials table {
        
    }

    .socials img {
        padding-top: 30px;
        padding-right: 30px;
        height: 200px;
        width: 200px;
    }
}