@import url('./home.css');
@import url('./links.css');
@import url('./icons.css');

@font-face {
  font-family: 'Rubik Mono One';
  src: url('./assets/fonts/RubikMonoOne-Regular.ttf') format('truetype');
}

:root {
  --text-colour: #f8f8f8;
  --text-colour-muted: #454545;
  --default-bg-colour: #1d1d1d;
  --main-tab-image-size: 100vw;
  height: 100%;
}

html, body {
  margin: 0;

  background-color: #0e0e0e;
  color: var(--text-colour);

  font-size: 1rem;
  font-family: 'Rubik Mono One', sans-serif;
  font-weight: 400;
  letter-spacing: 0.08rem;
  color: var(--text-colour);

  height: 100%;
}

main {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;

  align-items: center;

  width: 100%;
}

h1 {
  margin-top: 4rem;
  margin-bottom: 0.5rem;

  font-size: 10vw;
  font-weight: 400;
  text-align: center;
}

@media (min-width: 768px) {
  :root {
    --main-tab-image-size: 50vw;
  }
  main {
    width: 50%;
    margin: 0 auto;
  }
  h1 {
    font-size: 5vw;
  }
}


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

.btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;

  border: none;

  background-color: var(--default-bg-colour);
  color: var(--text-colour);

  font-size: 1rem;
  font-family: inherit;

  padding: 0.8rem 1rem;

  width: fit-content;
}

.tab {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
}

.tab-block {
  display: flex;
  flex-direction: row;
  flex-grow: 1;

  background-color: var(--default-bg-colour);

  padding: 0.8rem;

  width: auto;
  height: auto;
}

.tab-title {
  flex-grow: 0;
  display: flex;
  flex-direction: row;
}

.tab-content {
  justify-content: right;
  align-items: center;
  text-align: right;
}

#contact {
  width: 100%;
}
#contact .tab-block {
  background-color: var(--default-bg-colour);
}
#contact .tab-content {
  font-size: 0.8rem;
}
