/* =============== Fonts =============== */
/* color palette from https://www.color-hex.com/color-palettes */
@font-face {
  font-family: "Phantom Sans";
  src: url("https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Regular.woff")
      format("woff"),
    url("https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Regular.woff2")
      format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Phantom Sans";
  src: url("https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Italic.woff")
      format("woff"),
    url("https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Italic.woff2")
      format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Phantom Sans";
  src: url("https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Bold.woff")
      format("woff"),
    url("https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Bold.woff2")
      format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* =============== Variables =============== */
:root {
  --darkest-color: #064273;
  --lightest-color: #def3f6;
  --highlight-color: #ffffff;
  --bright-color-1: #1da2d8;
  --bright-color-2: #76b6c4;
  --bright-color-3: #7fcdff;
  --bright-color-4: #6093d2;
  --theme-ui-colors-primary: #ec3750;
  --theme-ui-colors-sheet: #f9fafc;
}

/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: 0.4s all ease-in-out;
}

body {
  background: var(--highlight-color);
  background-color: #000;
  color: var(--lightest-color);
  font-family: "Phantom Sans";
  margin: 0;
}

/* =============== Components =============== */
.buttons {
  height: 55px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  color: var(--highlight-color);
  background-color: var(--theme-ui-colors-primary);
  border-radius: 99999px;
  border: none;
  font-size: 24px;
  padding: 0 32px;
  font-family: "Phantom Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
  cursor: pointer;
  width: 100%;
}
.red-gradient {
  background-image: radial-gradient(
    ellipse farthest-corner at top left,
    #ff8c37,
    #ec3750
  );
}
.blue-gradient {
  background-image: radial-gradient(
    ellipse farthest-corner at top left,
    #5bc0de,
    #338eda
  );
}
.green-gradient {
  background-image: radial-gradient(
    ellipse farthest-corner at top left,
    #5bc0de,
    #33d6a6
  );
}
.orange-gradient {
  background-image: radial-gradient(
    ellipse farthest-corner at top left,
    #ff8c37,
    #f1c40f
  );
}
.purple-gradient {
  background-image: radial-gradient(
    ellipse farthest-corner at top left,
    #a633d6,
    #338eda
  );
}
.buttons:hover {
  transform: scale(1.1);
  color: var(--theme-ui-colors-sheet);
}

.link-list-item:focus,
.link-list-item:hover {
  box-shadow: 0 1px 2px rgb(0 0 0 / 6%), 0 8px 12px rgb(0 0 0 / 13%);
  -webkit-transform: scale(1.0625);
  -moz-transform: scale(1.0625);
  -ms-transform: scale(1.0625);
  transform: scale(1.0625);
}

#header {
  background-size: cover;
}

#header .container {
  margin: 0 auto;
  padding: 50px;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.circle-shape {
  width: 200px;
  height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid var(--lightest-color);
  margin: 0 auto;
}

.profile-pic {
  position: relative;
  display: inline;
  margin: 0 auto;
  height: 250px;
  width: 200px;
}

a {
  color: var(--lightest-color);
  text-decoration: none;
}

.ig-link {
  font-family: "Phantom Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
  font-weight: bold;
  font-size: 64px;
  box-sizing: border-box;
  min-width: 0;
  line-height: 1.125;
  letter-spacing: -0.009em;
  line-height: 1;
  color: white;
  margin-top: 24px;
  width: max-content;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* .link-list-item {
  border: 1px solid var(--lightest-color);
  box-sizing: border-box;
  margin: 20px auto;
  color: var(--darkest-color);
  padding: 15px;
  text-align: center;
  transition: all 0.15s;
  border-radius: 2px;
} */

.link-list-item-img {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* .highlighted,
.link-list-item:hover,
a:hover {
  color: var(--highlight-color);
  border-color: var(--highlight-color);
  text-shadow: 0 0 2em var(--highlight-color);
} */

.icon-list-img {
  height: 50px;
  width: 50px;
  margin: 3px;
}

.logos{
  text-align: center;
}
.dark {
  background: var(--bright-color-1);
}

.medium {
  background: var(--bright-color-2);
}

.light {
  background: var(--bright-color-3);
}

.bright {
  background: var(--bright-color-4);
}
