/* 1. Define colors for the light theme (default) */
:root {
  --bg-color: #fffcf9;
  --text-color: #393939;
  --link-color: #4545f9;
}

/* 2. Define colors for the dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #302c2c;
    --text-color: #f6f7ff;
    --link-color: #abb7ff;
  }
}


/* A helpful reset for box-sizing */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0; /* Removes default body margin */
  font-family: serif;
  line-height: 1.6;
}

.container {
  /* This is the fixed width you want on larger screens */
  max-width: 1000px; 

  /* This horizontally centers the container */
  margin-left: auto;
  margin-right: auto;

  /* On screens smaller than max-width, it will take up 100% of the width */
  width: 100%;

  /* Adds some space so content doesn't touch the screen edges on mobile */
  padding-left: 20px;
  padding-right: 20px;
}

a {
  color: var(--link-color);
}

.wrap-address {
  word-break: break-all;
  max-width: 100%;
  box-sizing: border-box;
}

.wrap-address p {
  margin: 0;
  padding: 0;
}