/*-------------------------------------*\
  #reset.css
\*-------------------------------------*/

/**
 * copyright 2021 @codewithsadee
 */


 .resize {
     width: 150px;
     height: 50%;
     object-position: 70% 15%;
 }

 .resizes {
     width: 100%;
     height: 100%;
 }


/**
 * Remove default margin & padding
 */

* {
  margin: 0;
  padding: 0;
  transition: all 0.250s cubic-bezier(0.75, -0.25, 0.25, 1);
}

/**
 * more-intuitive box-sizing model.
 */

*, *::before, *::after { box-sizing: border-box; }

/**
 * Default font-family

 */

html { font-family: var(--ff-inter);
background: #020304;

 }

/**
 * All heading color
 */

h1, h2, h3, h4, h5, h6 { color: #ffffff;
text-align: left; }

/**
 * Add default background & color,
 * Improve text rendering
 */

body {
  background: #020304;
  -webkit-font-smoothing: antialiased;

}
/**
 * change image default
 */

img {
  display: block;
  width: 70%;
  height: 70%;
  pointer-events: none;
  object-fit: cover;
}
/**
 * remove form default
 */

input, button, select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}

/**
 * add button default
 */

button {
  color: var(--off-white);
  cursor: pointer;
}

/**
 * remove list item marker
 */

li { list-style: none; }

/**
 * change link default
 */

a {
  text-decoration: none;
  display: block;
  color: var(--off-white);
  font-family: 'Open Sans';
}

/**
 * change default scrollbar style
 */

::-webkit-scrollbar {
  background: transparent;
  border-left: 1px solid var(--oxford-blue);
}

::-webkit-scrollbar-thumb {
  background: #101726;
  border-radius: 5em;
  border: 3px solid #62606e;-29);
}
