:root {
  --db: #192337;
  --lb: #6ed2ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Jost';
  src: url('/fonts/Jost-VariableFont_wght.woff2') format('woff2'),
       url('/fonts/Jost-Italic-VariableFont_wght.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--lb);
  color: var(--db);
  line-height: 1.5;
  overflow-x: hidden;
}

.logo {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.30);
  padding: 2rem;
}

section {
  border: 0px solid red; /* FRAMEWORK FOR BUILD */
  padding: 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.services {
  text-align: center;
}

.contact {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 1.2rem;
}

.contact-button-call {
  background: #192337;
  color: white;
  padding: 10px 60px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 10px;;
}

.contact-button-call:hover {
  background: #009a00;
}

.contact-button-text {
  background: #192337;
  color: white;
  padding: 10px 60px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 10px;;
}

.contact-button-text:hover {
  background: #147efb;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin: 2.5rem 0;
}

ul {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  display: grid;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.5rem;
  font-size: 1.5rem;
  text-align: left;
  box-shadow: inset -3px -3px 6px rgba(255, 255, 255, 0.30), inset 3px 3px 6px rgba(0, 0, 0, 0.30);
}

p {
  font-size: 1.5rem;
  text-align: left;
}

.imgframe {
  margin-top: 3rem;
  height: 420px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-align: center;
  padding: 1.5rem;
  border-color: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset -3px -3px 6px rgba(255, 255, 255, 0.30), inset 3px 3px 6px rgba(0, 0, 0, 0.30);
}

.imgpic {
  width:100%;
  height:100%;
  object-fit:cover;
  border: 1px solid rgba(0,0,0,0.0);
  border-radius: 12px;
}

footer {
  margin-top: 2rem;
  background: var(--lb);
  padding: 2rem;
  text-align: center;
  font-size: 1rem;
  color: var(--db);
  box-shadow: 0px -3px 6px rgba(255, 255, 255, 0.30);
}
