@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");

:root {
  --primary: #f9d66c;
  --secondary: #fab141;
  --bland: #d2ba6f;
  --light: #fdfb2d;
  --white: #fefefe;
  --grey: #c4cde0;
  --black: #303030;

  --font-family: "Varela Round";
  --font-logo: 2.4rem;
  --font-small: 1rem;
  --font-normal: 1.2rem;
  --font-medium: 1.5rem;
  --font-large: 3.2rem;
}

* {
  min-width: 0;
  direction: rtl;
}

body {
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  overflow-y: scroll; /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
}

body > * {
  padding: 2.3rem 2.5rem;
}

header {
  position: relative;
  margin: 0;
  padding-bottom: 0;

  background-color: var(--grey);
  background: linear-gradient(180deg, var(--grey) 0%, var(--white) 95%);
}

header a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

header .content {
  display: flex;
  flex-direction: column;
  max-width: 500px;
}

header .title {
  font-size: var(--font-logo);
  margin-bottom: 0px;
}

header .subtitle {
  margin-top: 0px;
  background-color: var(--bland);
  font-size: var(--font-normal);
  color: var(--white);
  padding: 0.3rem 1rem;
}

header img {
  background-color: var(--black);
  margin: 0;
  margin-bottom: -1rem;
  max-width: 150px;
  object-fit: scale-down;
  padding: 1rem 1rem;
}

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.logo img {
  width: 35px;
}

.logo:hover {
  transform: scale(1.1);
}

.glow-btn {
  background: var(--primary);
  background: linear-gradient(90deg, var(--bland) 0%, var(--primary) 100%);
  filter: brightness(105%);
  box-shadow: 0 0 20px 10px var(--bland);
  color: var(--white);
  cursor: pointer;

  text-decoration: none;
  transition: transform 0.3s ease-in-out;
  border-radius: 2rem;
  padding: 1rem;
  margin: 2rem 0;
  border: none;
  font-size: var(--font-small);
  font-family: var(--font-family);
}
.glow-btn:hover {
  transform: scale(1.1);
  filter: brightness(110%);
}

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

footer {
  margin: 3rem 2.3rem -1rem;
  padding: 2.3rem 2.5rem;
  border-radius: 1rem;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer .urls {
  margin: 0;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

footer .urls2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
}

footer .urls2 a,
footer .urls a {
  color: var(--white);
}

footer .logo-container {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 150px;
  height: 50px;
  /*background-color: var(--black);*/
  border-radius: 1rem;
}
footer .logo-container img {
  width: 100px;
  object-fit: scale-down;
}

.header-urls {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0;
  padding: 0.5rem 0;
}

.header-urls a {
  color: var(--black);
  margin: 0;
}
