:root {
  --max-width: 1100px;
  --border-radius: 12px;
  --font-mono: ui-monospace, Menlo, Monaco, 'Cascadia Mono', 'Segoe UI Mono',
    'Roboto Mono', 'Oxygen Mono', 'Ubuntu Monospace', 'Source Code Pro',
    'Fira Mono', 'Droid Sans Mono', 'Courier New', monospace;

  --foreground-rgb: 0, 0, 0;
  --background-start-rgb: 214, 219, 220;
  --background-end-rgb: 255, 255, 255;

  --main-color:#C30D23;
  --2nd-color:#ff3333;

  --primary-glow: conic-gradient(
    from 180deg at 50% 50%,
    #16abff33 0deg,
    #0885ff33 55deg,
    #54d6ff33 120deg,
    #0071ff33 160deg,
    transparent 360deg
  );
  --secondary-glow: radial-gradient(
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );

  --tile-start-rgb: 239, 245, 249;
  --tile-end-rgb: 228, 232, 233;
  --tile-border: conic-gradient(
    #00000080,
    #00000040,
    #00000030,
    #00000020,
    #00000010,
    #00000010,
    #00000080
  );

  --callout-rgb: 238, 240, 241;
  --callout-border-rgb: 172, 175, 176;
  --card-rgb: 180, 185, 188;
  --card-border-rgb: 131, 134, 135;
}

:target {
  scroll-margin-top: 100px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --foreground-rgb: 255, 255, 255;
    --background-start-rgb: 0, 0, 0;
    --background-end-rgb: 0, 0, 0;

    --primary-glow: radial-gradient(rgba(1, 65, 255, 0.4), rgba(1, 65, 255, 0));
    --secondary-glow: linear-gradient(
      to bottom right,
      rgba(1, 65, 255, 0),
      rgba(1, 65, 255, 0),
      rgba(1, 65, 255, 0.3)
    );

    --tile-start-rgb: 2, 13, 46;
    --tile-end-rgb: 2, 5, 19;
    --tile-border: conic-gradient(
      #ffffff80,
      #ffffff40,
      #ffffff30,
      #ffffff20,
      #ffffff10,
      #ffffff10,
      #ffffff80
    );

    --callout-rgb: 20, 20, 20;
    --callout-border-rgb: 108, 108, 108;
    --card-rgb: 100, 100, 100;
    --card-border-rgb: 200, 200, 200;
  }
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  position: relative;
  font-size: 16px;
  margin: 0;
  padding: 0;
  color: #000;
  line-height: 1.7;
  background-color: #fff;
  font-family: sans-serif
  /*
  background: linear-gradient(
      to bottom,
      transparent,
      rgb(var(--background-end-rgb))
    )
    rgb(var(--background-start-rgb));

   */
}

ul{
  padding:0;
  margin:0;
}
ul li{
  list-style-type: none;
  padding:0;
  margin:0;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.active_menu{
  border-bottom:2px solid #EA652D;
}

h1,h2,h3,h4{
  composes: gothic from "style.css";
  line-height: 1.5em;
  font-weight: bold;
}
h1 {
  font-size: 2.2rem;
  line-height: 1.8em;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.6rem;
}
h4 {
  font-size: 1.3rem;
  margin: 0;
}

img{
  width:100%;
}
span > img{
  transition: 0.2s;
}



#send_message{
  display: none;
  color:red;
  padding: 5px;
  margin: 10px 0;
  background-color: #ffff00;
}


button{
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  text-align: inherit;
  font: inherit;
  border-radius: 0;
  appearance: none;
}


input[type="text"],
input[type="email"],
textarea
{
  padding: 5px;
  font-size: 1rem;
border: 1px solid #ccc;
}

input[type="text"],
input[type="email"]{
  width: 300px;
}
textarea{
  width: 400px;
}

@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }


}



/* Mobile */
@media (max-width: 768px) {

  h1 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  h2 {
    font-size: 1.7rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.2rem;
  }

  .active_menu{
    color:#C30D23;
    border-bottom:none;
  }


  input[type="text"],
  input[type="email"],
  textarea
  {
    width: 100%;
  }
}