@font-face {
  font-family: 'DMSans';
  src: url('../fonts/DMSans-Bold.ttf') format('truetype');
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DMSans';
}

body {
    width: 100vw;
    height: 100vh;
    background: url("../images/banner.png") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0rem;
    color: #fff;
    text-align: center;
    position: relative;
}

/* Overlay for readability */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 0;
}

.bar-wrap {
    background: #000;
    color: #ffc316;
    font-size: 19px;
    text-transform: uppercase;
    text-align: center;
    padding: 13px 0;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #222;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.main-wrap {
    position: relative;
    z-index: 2;
    max-width: 90%;
    margin-top: 60px;
}

.flex-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.img-box {
    width: 22rem;
    max-width: 35vw;
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.3rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.action-btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    width: 8rem;
}

.primary-btn {
    background: #fff;
    color: #000;
    margin: 0.5rem;
}

.secondary-btn {
    background: #fff;
    color: #000;
    margin: 0.5rem;
}

/* Privacy Policy */
.footer-wrap {
    position: absolute;
    bottom: 2vh;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    color: #ddd;
    z-index: 2;
}

/* Responsive Text */
@media (max-width: 600px) {

    h1 {
        font-size: 1.6rem;
    }

    .img-box {
        max-width: 75vw;
    }

    .action-btn {
        width: 7rem;
        font-size: 1rem;
    }

    .flex-wrap {
        gap: 1.5rem;
    }

    .button {
        width: 76vw;
    }
}