/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --main-color: #e2003d;
  --text-color: #ffffff;
  --dark-color: #000000;
}
html {
	font-feature-settings: normal;
	font-size: 10px;
	height: 100%;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: var(--dark-color);
}
body {
  line-height: 1.44444;
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  text-align: center;
}

/* Container to center content */
#main-page {
  min-height: 100vh;
  background: var(--main-color);
  background-image: url("assets/background-image.png");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
}
.main-container {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
#logo img {
  width: 116px;
  height: 115px;
  border: 1px solid var(--dark-color);
  box-shadow: 3px 3px var(--dark-color);
  border-radius: 50%;
}
.intro-text {
  color: var(--text-color);
  font-family: Inter;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  margin-bottom: 2em;
  line-height: 1.2;
}
.link-tree {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
}
.link-tree .link-btn {
  display: block;
  flex: 1;
  width: 100%;
  flex-grow: grow;
  font-size: 1.4rem;
  border-radius: 8px;
  background-color: var(--text-color);
  border: 1px solid var(--dark-color);
  box-shadow: 3px 3px var(--dark-color);
  flex-grow: 1;
  transition: transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
.link-tree .link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px var(--dark-color);
}
.link-tree .link-btn a {
  display: block;
  padding: 16px 20px;
}
#social-icons {
  margin-top: 1em;
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#social-icons > a {
  padding: 0.7em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  transition: background-color 0.25s ease-in-out;
}
#social-icons > a:hover {
  background: var(--dark-color);
  border-radius: 12px;
}
#social-icons > a:hover > svg {
  transition: transform 0.25s ease-in-out;
}
