/*
Theme Name: Vertical Studios
Theme URI: https://example.com/vertical-studios
Author: Rahoni Couto
Description: Custom theme for Vertical Studios.
Version: 1.0
Text Domain: vertical-studios
*/

:root {
  --black: #000;
  --white: #fff;
  --gray: #b7b7b7;
  --accent: #e10600;
  --font-display: "Arial Black", "Impact", sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
