:root{
    --primary: #A6D8B3;
    --secondary: #224D2C;
    --tertiary: #D8A6CB;
    --paragraph: #F4F5F480;

    --black: #101010;
    --white: #F4F5F4;
    --surface-0: #131514;
    
    --color-sl-16: #224D2C16;
    --color-sl-32: #224D2C32;

    --text-sl-16: #A6D8B316;
    --text-sl-32: #A6D8B332;

    --background: var(--black);
    --foreground: var(--white);

    --border: #8F9991;

    --card-unavailable: #BFBFBF;
}

@media (prefers-color-scheme: light) {
  :root {
    --primary: #224D2C;
    --secondary: #A6D8B3;
    --tertiary: #4D2243;
    --paragraph: #0a0b0a80;

    --black: #f0f0f0;
    --white: #0a0b0a;
    --surface-0: #E7E9E8;
    
    --color-sl-16: #A6D8B316;
    --color-sl-32: #A6D8B332;

    --text-sl-16: #224D2C16;
    --text-sl-32: #224D2C32;
    
    --background: var(--black);
    --foreground: var(--white);

    --border: #667068;

    --card-unavailable: #404040;
  }
}

html{
    height: 100%;
    width: 100%;
}

body{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper{
    display: flex;
    flex-direction: row;
    gap: 32px;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

.texts{
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: fit-content;
}

.titles{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

a{
    text-decoration: underline;
}

svg.rotate{
    color: var(--primary);
}

svg.rotate:hover{
    color: var(--tertiary);
}

/* Large tablets & small desktops */
@media (max-width: 1199px) {
  .container {
    width: 992px;
  }
}

/* Tablets */
@media (max-width: 991px) {
  .container {
    width: 768px;
  }

  body {
    font-size: 15px;
  }
}

/* Large phones */
@media (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }

  body {
    font-size: 14px;
  }
}

/* Small phones */
@media (max-width: 575px) {
    .wrapper{
        flex-direction: column;
        align-items: flex-start;
    }
}