@import url('https://fonts.googleapis.com/css2?family=Anton&family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:wght@300;400&family=Share+Tech&family=Teko:wght@500&display=swap');

html, body {
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
    /*font-family: 'Barlow Condensed', sans-serif;*/
    font-family: 'Roboto Condensed', sans-serif;
    /*font-family: 'Share Tech', sans-serif;*/
    overflow: hidden;
    background-image: linear-gradient(to right, #434343 0%, black 100%);
}

:root {
    --black: #161616;
    --white: #fff;
    --blue: #2a2a86;
    --lightblue: #2a2a8610;
    --gray: rgb(179, 179, 179);
    --darkgray: rgb(112, 116, 129);
    --lightgray: #ededed;
    --border: #ddd;
    --red: rgb(255,94,77);
  }
  

/* custom scrollbar */
::-webkit-scrollbar {
    width: 20px;
  }
  
  ::-webkit-scrollbar-track {
    background-color: transparent;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
  }

.main-container {
  width: 100%;
  height: 90vh;
  overflow-y: auto;
}

.tree-link {
  display: block;
  background-color: #0000009f;
  color: white;
  width: calc(100% - 30px);
  height: 50px;
  margin: 15px;
  border-radius: 25px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  border: 1px solid var(--white);
  transition: all 300ms;
}

.tree-link:hover {
  background-color: black;
  font-size: 18px;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-direction: column;
}

.instagram {
  color: rgb(199, 199, 199);
  font-size: 16px;
  cursor: pointer;
  user-select: none;
}

.location {
  color: rgb(199, 199, 199);
  font-size: 14px;
}

.details {
  width: calc(100% - 40px);
  margin: 5px 20px;
  padding: 30px;
  background-color: #6161616e;
  color: rgb(209, 209, 209);
  font-weight: 300;
  border-radius: 30px;
}

.details > div {
  margin: 10px 0px;
}

.logo {
  width: 300px;
}