/* Import normalize.css */
@import 'normalize.css';

:root {
  --text-color: rgb(113, 105, 105);
  --gold: rgb(222, 169, 41);
  --yellow: rgb(235, 169, 0);
  --blue: rgb(33, 20, 95);
  --white: rgb(255, 255, 255);
  --black: #000000;
  --ultra-light-grey: #f4f5f7;
  --light-yellow:#fff7e4;
}

/* Base styles */
body {
  font-family: Montserrat, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url('/images/background.jpg');
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
}

button:empty,
a:empty {
  display: none;
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: .3s;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section {
  margin-bottom: 80px;
}

/* container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.title {
  font-size: 48px;
  color: var(--gold);
  font-weight: 700;
  text-align: center;
  font-family: 'Herkings';
  text-transform: uppercase;
}

.text {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
}

.text-center {
  text-align: center;
}

.btn {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  color: var(--yellow);
  border: 2px solid var(--yellow);
  padding: 10px 15px;
  text-decoration: underline;
  border-radius: 4px;
}

.btn:hover {
  background-color: var(--yellow);
  color: var(--white);
  text-decoration: none;
}


.btn--blue {
  background-color: var(--blue);
  border: 2px solid var(--blue);
  color: var(--white);
  font-weight: 500;
}

.btn--blue:hover {
  background-color: var(--yellow);
  color: var(--white);
  border: 2px solid var(--yellow);
}

