/* Base styles - resets and defaults */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-image: url("../img/background2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: "Ubuntu", sans-serif;
  user-select: none;
  color: #282828;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

ul, ol {
  padding-inline-start: 0;
  list-style-type: none;
}

tbody {
  vertical-align: middle;
}
