html {
    --my-blue: #5F66FF;
    --full-h: calc(100vh - 4em)
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6{
    font-weight: 600;
    line-height: 90%;
}

.header .container {
    padding-top: 1em;
    padding-bottom: 1em;
}

.header span {
    color: var(--my-blue);
}

.full-h {
    min-height: var(--full-h);
}

.blue {
    color: var(--my-blue);
}

.prim-btn {
    background-color: var(--my-blue);
    border: none;
    padding: 0.5em 1em;
    color: white;
    min-width: 200px;
}

.prim-btn:hover {
    background-color: black;
}

.sec-btn {
    background-color: white;
    border: solid 1px black;
    padding: 0.5em 1em;
    min-width: 200px;
}

.sec-btn:hover {
    background-color: black;
    color: white;
}

@media only screen and (max-width: 768px) {
    .prim-btn {
        min-width: 100%;
    }

    .sec-btn {
        min-width: 100%;
    }
  }

.img-wrap {
    transform: translateY(-4em);
    max-height: 100vh;
    position: relative;
    overflow: hidden;
}


.img-wrap img {
    height: 100%;
    object-fit: contain;
}

.img-wrap::before {
    content: "";
    width: 100%;
    position: absolute;
    height: 30px;
    top: 0;
    background: linear-gradient(to bottom, white, transparent);
}

.img-wrap::after {
    content: "";
    width: 100%;
    position: absolute;
    height: 30px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, white, transparent);

}

form span {
    color: red;
}

.myinput {
    padding:  0.5em 1em;
    width: 400px;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: black;
}