@font-face{
  font-family: Rubik;
  src: url(https://cdn.phaz.uk/fonts/JosefinSans/JosefinSans-VariableFont_wght.ttf)
}

body{
  background: #f7f7f7;
  font-family: Rubik, Segoe UI, Tahoma, Geneva, Verdana, sans-serif
}

*{
  box-sizing: border-box
}

h1,h2,h3,h4,h5,h6,p{
  margin: 0
}

.sidebar{
  position: fixed;
  left: 0;
  top: 0;
  width: 150px;
  height: 100vh;
  background: #ffffff;
  border-right: 1px solid #bdbdbd;
}

.sidebar-logo{
  width: 100px;
  position: absolute;
  left: 25px;
  top: 25px;
  height: 130px;
  background: url('https://cdn.phaz.uk/Assets/red/1024tacobell.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.sidebar-buttons-container{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 150px;
  overflow: hidden;
}

.sidebar-button{
  position: relative;
  left: 50%;
  background: #dedede;
  height: 100px;
  width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  transform: translateX(-50%) rotate(-15deg);
  cursor: pointer;
  user-select: none;
}

.main{
  position: fixed;
  top: 0;
  left: 150px;
  height: 100vh;
  width: calc(100vw - 150px);
  overflow: auto;
  text-align: center;
}

.banner{
  height: 37.5vw;
  width: 100%;
  background: url('https://cdn.phaz.uk/Assets/red/header.png');
  background-position: center;
  background-size: cover;
  cursor: pointer;
  user-select: none;
}

.banner-icon-container{
  width: 100%;
  height: 100px;
  display: flex;
  margin-top: -50px;
  margin-bottom: 10px;
  justify-content: center;
}

.banner-icon{
  background: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: #0005 0 0 10px;
  background: url('https://cdn.phaz.uk/Assets/bafkreig6ex2mkqyduspmh5qhiezhll6bnsg66itthiqxif52afld7z324e.jpg');
  background-size: contain;
}

h1{
  text-align: center;
}

h1 > div{
  width: fit-content;
  display: inline-block;
}

h1 > div::after{
  content: "";
  display: inline-block;
  background: #5cb8b2;
  width: 100%;
  height: 5px;
  position: relative;
  z-index: -1; 
  transform: translateY(-16px);
}

.cols-static{
  display: flex;
  margin: auto;
  width: 900px;
}

.cols{
  display: flex;
  margin: auto;
  width: 90%;
}

.col{
  margin-top: 10px;
  width: 100%;
}

.col-50{
  margin-top: 10px;
  width: 50%;
  margin: 5px;
}

.col-33{
  margin-top: 10px;
  width: 33%;
  margin: 5px;
}

.button{
  background: #702082;
  color: #fff;
  padding: 10px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

.footer{
  margin-top: 150px;
}

.footer .footer-link{
  display: inline-block;
}

.footer .footer-link:first-of-type::before{
  display: none;
}

.footer .footer-link::before{
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #dedede;
  border-radius: 50%;
  margin: 0 15px;
  margin-top: -10px;
}

.branding{
  position: absolute;
  left: 0;
  display: flex;
}

.branding-icon{
  width: 40px;
  height: 40px;
  margin-left: 20px;
  border-radius: 50%;
  background: url('https://cdn.phaz.uk/Assets/60e38fa44fc392365cb2f300daccd0a8.webp');
  background-size: cover;
  background-position: center;
}

.branding-info{
  font-size: 11px;
  margin-left: 5px;
  display: flex;
  align-items: center;
}

.socials{
  position: fixed;
  top: 165px;
  right: 0px;
  z-index: 99;
}

.socials-button{
  width: 50px;
  height: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding-right: 10px;
  border-radius: 5px 0 0 5px;
  box-shadow: #0005 0 0 10px;
  cursor: pointer;
  user-select: none;
}

a{
  color: #222;
  text-decoration: none;
  transition: 0.1s;
}

a:hover{
  color: #666;
}

.mobile-navbar{
  display: none;
}

.sidebar-close{
  cursor: pointer;
  user-select: none;
  display: none;
}

.icon{
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon img{
  width: 60%;
  height: 60%;
}

.fridge{
  width: 75%;
}

.icon-outline{
  width: 200px;
  height: 200px;
  border: #000 10px solid;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 30px;
  cursor: pointer;
  user-select: none;
}

.clicker-game{
  border: none;
  width: 70vw;
  height: 40vw;
  min-height: 480px;
}

.button-clicker{
  width: 70vw;
}

@media only screen and (max-width: 1050px) {
  .cols-static{
    width: 100%;
  }
}

@media only screen and (max-width: 900px) {
  .mobile-navbar{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 75px;
    width: 100vw;
    background: #fff5;
    backdrop-filter: blur(10px);
    z-index: 90;
    box-shadow: #0005 0 0 10px;
  }

  .mobile-navbar-container{
    width: 50px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
  }

  .banner{
    height: 100vw;
    background: url('https://cdn.phaz.uk/Assets/red/headerwebsitemobile.png');
    background-position: center;
    background-size: cover;
  }

  .sidebar{
    left: -150px;
  }

  .sidebar-close{
    position: absolute;
    bottom: 50px;
    left: 25px;
    width: 100px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #navmenuopen:checked ~ .sidebar{
    left: 0px;
    z-index: 92;
    box-shadow: #0005 0 0 10px;
  }

  .main{
    width: 100vw;
    padding-top: 75px;
    left: 0;
  }

  .cols{
    width: 100%;
  }
}

@media only screen and (max-width: 750px) {
  .cols-static{
    display: block;
  }
}

@media only screen and (max-width: 600px) {
  .cols{
    display: block;
  }

  .item-image{
    height: 75vw;
  }

  .col-50{
    width: 100%;
    text-align: center !important;
  }

  .col-33{
    width: 100%;
    text-align: center !important;
  }

  .clicker-game{
    width: 100vw;
    height: 125vw;
    min-height: 600px;
  }

  .button-clicker{
    width: 100vw;
  }
}

@media only screen and (max-height: 700px) {
  .sidebar-buttons-container{
    top: 100%;
    transform: translateY(-100%);
  }
}

@media only screen and (max-height: 510px) {
  .sidebar-button{
    height: 60px;
  }
}