* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* logo and background */
.logo-butn {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

body {
  background: linear-gradient(
    90deg,
    #1f1f1f 25%,
    #000000 25%,
    #424242 50%,
    #0f0f0f 50%,
    #242424 75%,
    #000000 75%,
    #2c2c2c 100%
  );
  background-size: 30px 30px;
  z-index: -1;
  height: 100%;
}

h1.logo {
  margin: 0;
  padding: 0;
  line-height: 0;
}

h1.logo img,
h1.logo picture {
  display: block;
}

.logo--desktop { display: block; }
.logo--mobile  { display: none; }

@media (max-width: 815px) {
  .logo--desktop { display: none; }
  .logo--mobile  { display: block; }

  header {
    padding-top: 0;
  }
}

header h1.logo {
  margin: 0;              
  padding: 0;             
  text-align: center;     
}

header h1.logo picture,
header h1.logo img {
  display: inline-block;  
  margin: 0 auto;         
  line-height: 0;         
}
/* logo and background */



/* nav n subnav */
nav {
  margin-top: 0px;
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 3px;
  list-style: none;
  padding: 10px 0;
  background: black
}

.navbar a {
  text-decoration: none;
  font-family: "Special Gothic", sans-serif;
}

.sub-navbar {
  background-image: url('layflay.jpg');
  padding: 10px 0;
  border-bottom: 1px solid rgb(168, 168, 168);
  display: flex;
  justify-content: center;
}

.sub-navbar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 50px;
}
.sub-navbar-list li a {
  color: white;
  text-decoration: none;
  font-family: "Ubuntu", sans-serif;
  padding: 3px 60px;
  background: linear-gradient(
    to bottom,
    #7c7c7c,
    #000000 40%,
    #5a5a5a 100%
  );
  margin-top: 2px;
  border: 2px solid rgb(82, 82, 82);
  text-align: left;
}
/* nav n subnav */



/* nav n subnav butns */
.main-butn {
  border: 2px solid rgb(53, 53, 53);
  background: rgb(53, 53, 53);
  color: white;
  padding: 6px 70.5px;
  margin-top: 2px;
}

.shop-butn {
  border: 2px solid rgb(53, 53, 53);
  background: rgb(53, 53, 53);
  color: white;
  padding: 6px 70.5px;
  margin-top: 2px;
}

.portal-butn {
  border: 2px solid rgb(12, 12, 12);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(150, 0, 1, 1) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  box-shadow: 0 0 6px 3px red;
  color: rgb(233, 229, 8);
  padding: 6px 70.5px;
  margin-top: 2px;
  font-weight: bold;
}

.gallery-butn {
  border: 2px solid rgb(53, 53, 53);
  background: rgb(53, 53, 53);
  color: white;
  padding: 6px 70.5px;
  margin-top: 2px;
}

.contact-butn {
  border: 2px solid rgb(120, 0, 0);
  background-color: rgb(12, 12, 12);
  color: white;
  padding: 0px 10.5px;
}

.info-butn {
  border: 2px solid rgb(120, 0, 0);
  background-color: rgb(12, 12, 12);
  color: white;
  padding: 0px 10.5px;
}
/* nav n subnav butns */



/* nav n subnav butn hovers */
@keyframes jitter {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-1px, 1px);
  }
  50% {
    transform: translate(1px, -1px);
  }
  75% {
    transform: translate(-1px, -1px);
  }
}

.main-butn,
.shop-butn,
.portal-butn,
.gallery-butn,
.contact-butn,
.info-butn,
.skin-butn,
.cart-butn {
  display: inline-block;
}

.main-butn:hover {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(150, 0, 1, 1) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  color: rgb(233, 229, 8);
  border: 2px solid rgb(12, 12, 12);
  box-shadow: 0 0 6px 3px red;
}

.shop-butn:hover {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(150, 0, 1, 1) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  color: rgb(233, 229, 8);
  border: 2px solid rgb(12, 12, 12);
  box-shadow: 0 0 6px 3px red;
}

.gallery-butn:hover {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(150, 0, 1, 1) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  color: rgb(233, 229, 8);
  border: 2px solid rgb(12, 12, 12);
  box-shadow: 0 0 6px 3px red;
}

.info-butn:hover {
  text-decoration: underline;
  color: rgb(127, 0, 185);
  background: #000000;
}

.skin-butn:hover {
  text-decoration: underline;
  color: rgb(127, 0, 185);
  background: #000000;
}

.cart-butn:hover {
  text-decoration: underline;
  color: rgb(127, 0, 185);
  background: #000000;
}

.contact-butn:hover {
  background: rgb(120, 0, 0);
}
/* nav n subnav butn hovers */



/* main content box */
.main-content {
  max-width: 1010px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.666);
  padding: 110px;
  position: relative;
}
/* main content box */


/* social media list */
.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.link-list .dot {
  width: 70px;
  height: 50px;
  margin-right: 0px;
}
/* social media list */



/* social media square indicators */
.link-list li.youtube .dot {
  background: radial-gradient(
      circle at center,
      rgba(255, 60, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.9) 35%,
      black 60%
    ),
    linear-gradient(to bottom, #d3d3d3, #000000 40%, #5a5a5a 100%);
  position: relative;
  box-shadow: inset 0 0 6px rgba(192, 192, 192, 0.8),
    0 1px 2px rgba(255, 255, 255, 0.3), 0 2px 5px rgba(0, 0, 0, 0.5);
  border: 1px solid #444;
}
.link-list li.soundcloud .dot {
  background: radial-gradient(
      circle at center,
      rgba(255, 145, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.9) 35%,
      black 60%
    ),
    linear-gradient(to bottom, #d3d3d3, #000000 40%, #5a5a5a 100%);
  position: relative;
  box-shadow: inset 0 0 6px rgba(192, 192, 192, 0.8),
    0 1px 2px rgba(255, 255, 255, 0.3), 0 2px 5px rgba(0, 0, 0, 0.5);
  border: 1px solid #444;
}
.link-list li.spotify .dot {
  background: radial-gradient(
      circle at center,
      rgba(94, 255, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.9) 35%,
      black 60%
    ),
    linear-gradient(to bottom, #d3d3d3, #000000 40%, #5a5a5a 100%);
  position: relative;
  box-shadow: inset 0 0 6px rgba(192, 192, 192, 0.8),
    0 1px 2px rgba(255, 255, 255, 0.3), 0 2px 5px rgba(0, 0, 0, 0.5);
  border: 1px solid #444;
}
.link-list li.apple .dot {
  background: radial-gradient(
      circle at center,
      rgba(0, 255, 234, 0.8) 0%,
      rgba(0, 0, 0, 0.9) 35%,
      black 60%
    ),
    linear-gradient(to bottom, #d3d3d3, #000000 40%, #5a5a5a 100%);
  position: relative;
  box-shadow: inset 0 0 6px rgba(192, 192, 192, 0.8),
    0 1px 2px rgba(255, 255, 255, 0.3), 0 2px 5px rgba(0, 0, 0, 0.5);
  border: 1px solid #444;
}
.link-list li.instagram .dot {
  background: radial-gradient(
      circle at center,
      rgba(255, 0, 234, 0.8) 0%,
      rgba(0, 0, 0, 0.9) 35%,
      black 60%
    ),
    linear-gradient(to bottom, #d3d3d3, #000000 40%, #5a5a5a 100%);
  position: relative;
  box-shadow: inset 0 0 6px rgba(192, 192, 192, 0.8),
    0 1px 2px rgba(255, 255, 255, 0.3), 0 2px 5px rgba(0, 0, 0, 0.5);
  border: 1px solid #444;
}
.link-list li.paws .dot {
  background: radial-gradient(
      circle at center,
      rgba(132, 0, 255, 0.8) 0%,
      rgba(0, 0, 0, 0.9) 35%,
      black 60%
    ),
    linear-gradient(to bottom, #d3d3d3, #000000 40%, #5a5a5a 100%);
  position: relative;
  box-shadow: inset 0 0 6px rgba(192, 192, 192, 0.8),
    0 1px 2px rgba(255, 255, 255, 0.3), 0 2px 5px rgba(0, 0, 0, 0.5);
  border: 1px solid #444;
}
/* social media square indicators */



/* social media butns */
.link-list a {
  text-decoration: none;
  font-family: "Ubuntu", sans-serif;
  color: white;

  background: linear-gradient(
    to bottom,
    #7c7c7c,
    #000000 40%,
    #5a5a5a 100%
  );

  position: relative;
  box-shadow:
    inset 0 0 6px rgba(192, 192, 192, 0.8),
    0 1px 2px rgba(255, 255, 255, 0.3),
    0 2px 5px rgba(0, 0, 0, 0.5);

  border: 2px solid rgb(53, 53, 53);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  min-width: 200px;
  box-sizing: border-box;
}
/* social media butns */



/* social media butn n square glows */
.link-list li.youtube a:hover {
  color: rgb(255, 0, 0);
  text-decoration: underline;
  background: black;
}

.link-list li.soundcloud a:hover {
  color: rgb(255, 165, 0);
  text-decoration: underline;
  background: black;
}

.link-list li.spotify a:hover {
  color: rgb(0, 255, 0);
  text-decoration: underline;
  background: black;
}

.link-list li.apple a:hover {
  color: rgb(0, 255, 255);
  text-decoration: underline;
  background: black;
}

.link-list li.instagram a:hover {
  color: rgb(255, 0, 255);
  text-decoration: underline;
  background: black;
}

.link-list li.paws a:hover {
  color: rgb(127, 0, 185);
  text-decoration: underline;
  background: black;
}

.link-list li:hover .dot {
  opacity: 1;
  filter: brightness(2) drop-shadow(0 0 6px currentColor);
}
/* social media butn n square glows */



/* i love you puppy img*/
.portal-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 140px;
  margin-top: 0px;
  flex-wrap: wrap;
}

.image-box img {
  max-width: 305px;
}

.right-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
/* i love you puppy img*/



.newsletter-box {
  background-image: url('wris.jpg') ;
  background-repeat: no-repeat;
  padding: 33px;
  text-align: center;
  width: 300px;
  height: auto;
}

.newsletter-box p {
  color: white;
  margin-bottom: 5px;
  font-family: "Special Gothic", sans-serif;
  text-shadow: 
  -1px -1px 0 #000,  
   1px -1px 0 #000,
  -1px  1px 0 #000,
   1px  1px 0 #000;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0px;
}

.newsletter-form input {
  padding: 6px 10px;
  background-color: #111;
  border: none;
  color: white;
  width: 150px;
}

.newsletter-form button {
  padding: 6px 12px;
  background-color: rgb(90, 90, 90);
  color: rgb(255, 255, 255);
  font-family: "Comic Neue", cursive;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.newsletter-form input {
  font-family: "Comic Neue", cursive;
  font-weight: 700;
}

.newsletter-form input::placeholder {
  font-family: "Comic Neue", cursive;
  font-weight: 700;
}

.footer {
  text-align: center;
  padding: 41px 0;
  background-color: rgb(0, 0, 0);
  color: white;
  margin-top: 0px;
  font-size: 0.9em;
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid rgb(168, 168, 168);
  font-family: "Comic Neue", cursive;
  font-weight: 700;
}

@media (max-width: 815px) {

nav {
  margin-top: 0px;
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 2px;
  list-style: none;
  padding: 10px 0;
  background-color: rgb(0, 0, 0);
}


.main-butn {
  border: 2px solid rgb(53, 53, 53);
  background: rgb(53, 53, 53);
  color: white;
  padding: 6px 15.5px;
  margin-top: 2px;
}

.shop-butn {
  border: 2px solid rgb(53, 53, 53);
  background: rgb(53, 53, 53);
  color: white;
  padding: 6px 17px;
  margin-top: 2px;
}

.portal-butn {
  border: 2px solid rgb(12, 12, 12);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(150, 0, 1, 1) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  box-shadow: 0 0 6px 3px red;
  color: white;
  padding: 6px 20.22px;
  margin-top: 2px;
  font-weight: bold;
}

.gallery-butn {
  border: 2px solid rgb(53, 53, 53);
  background: rgb(53, 53, 53);
  color: white;
  padding: 6px 15.5px;
  margin-top: 2px;
}

  .sub-navbar-list {
    gap: 10px;
    padding: 40;
  }

  .sub-navbar-list li a {
    padding: 0px 30px;
    display: block;
  }

  .portal-container {
    gap: 6px;
    align-items: center;
  }

  .newsletter-box {
    width: 90%;
    padding: 20px;
    background-size: cover;
    background-position: center;
  }

  .link-list li {
    align-items: center;
    text-align: center;
  }

  .link-list .dot {
    margin-bottom: 0px;
    margin-right: 0;
  }

  .link-list a {
    min-width: unset;
    width: 100%;
  }

  .footer {
    font-size: 0.8em;
    padding: 20px;
  }

  .main-content {
    padding: 40px 20px;
  }

  .logo {
    font-size: 2em;
    padding: 15px 0px;
  }
}

@media (min-width: 816px) {
  .portal-container {
    flex-wrap: nowrap !important;
  }
}

/* hide mobile by default */
.logo--mobile {
  display: none;
}

/* at or below 815px, swap them */
@media (max-width: 815px) {
  .logo--desktop { display: none; }
  .logo--mobile  { display: block; }
}






