
:root {
--bg_color: #545A4A;
--text_color: #EAE3DB;
--link_color: #B08062;
}
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

body {
    background-color: var(--bg_color) ;
    color: var(--text_color);
    height: 100vh;
    width: 100vw;
    font-family: "Raleway", sans-serif;
}
.full-page-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.text-container {
    max-width: 500px;
    width: 80vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h2 {
    margin: 0;
    padding: 0;
    margin-top: 16px;
    font-size: 22px;
    text-transform: uppercase;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
}

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