/* 
  Simple beginner CSS. 
  No animations. No site-builder code.
*/

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  background-color: #6f2dbd;
}

.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  background: #ffffff;
  color: #222222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.site-title {
  font-size: 28px;
  font-weight: bold;
}

.main-nav a {
  color: #222222;
  text-decoration: none;
  font-weight: bold;
}

.main-nav a:hover {
  text-decoration: underline;
}

.page {
  position: relative;
  min-height: 100vh;
  padding: 140px 40px 80px;
  overflow: hidden;
}

.photo-slash {
  position: absolute;
  top: 160px;
  right: -160px;
  width: 820px;
  height: 260px;
  transform: rotate(-14deg);
  overflow: hidden;
  border: 10px solid #ffffff;
  z-index: 1;
}

.photo-slash img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(14deg) scale(1.25);
}

.content-card {
  position: relative;
  z-index: 2;
  max-width: 620px;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 32px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: bold;
}

h1 {
  margin: 0 0 20px;
  font-size: 42px;
  line-height: 1.1;
}

p {
  font-size: 18px;
  line-height: 1.6;
}

.small-card {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-top: 60px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.35);
  padding: 28px;
}

.small-card h2 {
  margin-top: 0;
}

.bottom-banner {
  background: #ffffff;
  color: #222222;
  text-align: center;
  padding: 18px 30px;
}

.bottom-banner p {
  margin: 0;
  font-size: 15px;
}

@media (max-width: 760px) {
  .top-banner {
    height: auto;
    min-height: 76px;
    padding: 18px 24px;
    flex-direction: column;
    gap: 8px;
  }

  .page {
    padding: 150px 22px 60px;
  }

  .photo-slash {
    position: relative;
    top: auto;
    right: auto;
    width: 120%;
    height: 190px;
    margin: 0 0 40px -10%;
  }

  h1 {
    font-size: 34px;
  }
}