/**
Theme Name: Seitatech
Author: Bibhor Shrestha
Author URI: https://bibhorshrestha.com/
Description: Custom Wordpress Theme
Version: 1.0.0
Text Domain: Seitatech
*/

:root {
  --color-dark: #1E1E1E;
  --color-gray: #4F4F4F;
  --color-neutral-grey: #D9D9D9;
  --color-light-gray: #FAFAFA;
  --color-white: #FFFFFF;
  --color-green: #00FF29;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Trim', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 300;
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.5;
}

main {
  min-height: 70vh;
  margin-top: 8vh;
}

.home main {
  margin-top: 0vh;
}

button {
  padding: 0;
  margin: 0;
  background: none;
  border: none;
}

/* Utility classes */
.ratio-container {
  position: relative;
  height: 0;
  padding-top: 100%;
  overflow: hidden;
}

.ratio-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
}

[id] {
  scroll-margin-top: 150px;
}