/*
=====================================================
Projekt : contao4_schönzeit2021
WebSite : root.schoenzeit-bensheim.de
Name    : root.css
Media   : screen
ErstDate: 30.07.2021
AendDate: <!--%TimeStamp%-->02.09.2025 12:33<!---->
Editor  : Rapid CSS 2025
Vermerke: Übername aus index.html
Autor   : Hartmut Schneider - hs-designteam.de
=====================================================
*/

@media screen {

/***** Basics ****/
html {
  overflow-y: scroll;
  scroll-behavior: smooth;
  }

body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
  font-size: 100%; /* 100% = 16px Browser-Standard */
  font-weight: normal;
  color: #000000;
  background-color: #C7B9AE;
  hyphens: auto; /* automatische Silbentrennung */
  }

/* Box-Modell auf border-box umstellen */
*,
*::before,
*::after {
  box-sizing: border-box;
  }

/* Textelemente - Vermeidung von Collapsing Margins */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
blockquote {
  margin-top: 0;
}

/********* Inhalte ********/
.flex-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
/*border: solid 1px #FF0000;*/
}

.logo-text {
  display: block;
  margin: auto;
  width: 50%;
/*border: solid 1px #FF0000;*/
  }

p {
  margin-top: 1rem;
  }

strong {
  font-weight: bold;
  }

.linkbox {
  width: 50%;
  padding: 2rem;
  border: solid 2px #990000;
  border-radius: 6px;
  background-color: #EDE6E0;
  }

} /* @media screen */
/*EOF*/