:root {
  /* ==== Colors ==== */
  --white: #ffffff;
  --black: #141313;
  --general-background-color: rgb(65, 65, 65);
  --header-footer-color: radial-gradient(ellipse at center, rgb(37, 36, 36) 0%, rgb(41, 40, 40) 100%);

  /* ==== Sizes ==== */
  --slide-max-width: 1360px;
  --slide-side-margin: 35px;
  --header-height-normal: 44px;
  --screen-height: 100dvh;
  --section-height-normal: calc(var(--screen-height) - var(--header-height-normal) + 2px);
}

html {
  overflow-x: hidden;
  scroll-behavior: auto;
  cursor: default;
  font-size: 18px;
  font-family: "Arial";
  scrollbar-width: none;
  height: 100%;
  width: 100%;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  color: var(--white);
}

/* Anchors offsetting */
#home-link,
#about-link,
#skills-link,
#examples-link,
#contact-link {
  display: block;
  position: relative;
  top: calc(-1 * var(--header-height-normal));
  visibility: hidden;
}

/* Classes */
.slide {
  top: -2px;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: var(--section-height-normal);
}

.background {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.3) contrast(0.6);
}

.slide-title-style {
  display: flex;
  justify-content: center;
  position: relative;
  font-size: 22px;
  font-weight: 800;
  padding: 24px 50px;
  border: 5px solid var(--white);
  border-width: 5px 0px;
}

.arrow-down {
  position: absolute;
  background-color: var(--white);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 10px;
  left: calc(50% - 5% - 10px);
  width: 10%;
  padding: 1px 10px;
  border-radius: 25px;
}

.arrow-down img {
  height: 20px;
}

#small-mobile-screen-message {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: fixed;
  z-index: 2;
  background-color: rgb(24, 23, 23);
  height: 100%;
  bottom: 0px;
  z-index: 3;
  line-height: 1.6;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: rgb(211, 124, 124);
  padding: 35px;
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  white-space: nowrap;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
