@import url(header.css);
@import url(hero.css);
@import url(news.css);
@import url(events.css);
@import url(footer.css);
@import url(modal.css);

:root {
  --primary-blue: #0e8bcb;
  --dark-blue: #1a3b5d;
  --medium-blue: #083e5c;
  --light-blue: #eaf2ff;
  --blue: #bfdded;
  --gray-blue: #5d7d95;
  --accent-color: #d09131;
  --accent-hover: #f6dd7f;
  --text-color: #333;
  --footer-border: #34495e;
  --white-secondary: #bdc3c7;
  --white: #ffffff;
  --black: #000000;
}

@font-face {
  font-family: "Cooper Black";
  src: url(../fonts/COOPBL.woff);
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-VariableFont_opsz\,wght.ttf);
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

body {
  background-color: var(--medium-blue);
}

.container {
  max-width: 962px;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

.section-title {
  font-size: 1.5rem;
  text-align: center;
  color: var(--primary-blue);
  text-decoration: underline;
  margin-bottom: 8px;
  padding-top: 8px;
}


.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: bold;
  transition: 0.3s;
}

@media (min-width: 728px) {
  .btn {
    font-size: 14px;
    padding: 20px 34px;
  }
}

