/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: myFont;
  /* set name */
  src: url(font/Unzialish-nrxO.ttf);
  /* url of the font */
}

body,
html {
  height: 100%;
  color: rgba(38, 42, 41, 100);
  font-family: 'Times New Roman', Times, serif;
}

h1 {
  margin-top: 6rem;
}

.fancy-text {
  font-family: myFont;
  font-weight: bold;
}

.hero {
  background-image: url('img/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.introduction {
  background-color: rgba(38, 42, 41, 100);
  color: rgba(246, 228, 204, 100);
  min-height: 100vh;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.introduction-content {
  width: 60%;
  margin: 3rem;
}

.introduction-text {
  text-align: center;
  margin: 3rem;
}

.introduction img {
  max-width: 50vw;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

.reason {
  background-color: rgba(246, 228, 204, 100);
  color: rgba(38, 42, 41, 100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason-cards {
  display: inline;
}

/* Float four columns side by side */
.column {
  float: left;
  width: 33%;
  padding: 0 10px;
}

/* Remove extra left and right margins, due to padding in columns */
.row {margin: 0 -5px;}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive columns - one column layout (vertical) on small screens */
@media screen and (max-width: 800px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

.card {
  background-color: rgba(38, 42, 41, 100);
  color: rgba(246, 228, 204, 100);
  margin: 2%;
  display: block;
  border-radius: 10px;
  max-width: fit-content;
  width: 60vw;
}

.card-hmod {
  height: 30rem;
}

.card img {
  max-width: calc(60vw - 20px);
  height: auto;
}

.card-header {
  padding-top: 15px;
  margin: 20px;
  font-size: 30px;
}

.card-subtext {
  margin: 10px;
  font-size: 12px;
}

.card-body {
  margin: 1rem;
  font-size: 18px;
}

.card-footer {
  min-height: 3rem;
  margin: 2rem;
}

.start {
  background-color: rgba(38, 42, 41, 100);
  color: rgba(246, 228, 204, 100);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.start img {
  margin-top: 1rem;
}

.start-title {
  margin-bottom: 2rem;
  margin-top: 0rem;
}

.start-parent {
  display: flex;
}

.start-side {
  flex: 1;
}

.start-text {
  margin-left: 2rem;
  text-align: right;
}

.start-side:first-child {
  margin-right: 5vw;
}

.overlay {
  text-align: center;
  background-color: rgba(255, 255, 255, 0);
  /* Transparent for now */
  padding: 2rem;
  backdrop-filter: none;
}

.logo {
  max-width: 90%;
  width: 400px;
  height: auto;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: #222222;
  margin-bottom: 2rem;
  letter-spacing: 0.2em;
}

.coc {
  background-image: url('img/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  background-color: #6a0dad;
  /* Royal purple */
  color: rgba(246, 228, 204, 100);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-family: myFont;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #580a9e;
}