@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Wendy+One&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    background: url(bg.jpg) no-repeat center center fixed;
    height: 100%;

    /* Center and scale the image nicely */
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

img.logo {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

div.links {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: space-around;
    justify-content: center;
    align-items: flex-start;
}

a {
    font-family: "Wendy One", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 28px;
    color: black;
    background: #CB8900;
    padding: 14px;
    margin: 0;
    text-decoration: none;
    width: 25%;
    text-align: center;
}

a:hover {
    color: #CB8900;
    background: black;
}

div.bussines {
    margin-top: 5%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: space-around;
    justify-content: center;
    align-items: flex-start;
    gap: 8%;
}

div.bussines a {
    display: block;
    width: 18%;
}

div.bussines img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

div.bussines span {
    display: block;
    line-height: 40px;
    height: 28px;
}

div.email {
    display: block;
    width: 74%;
    background: rgba(0, 0, 0, 0.88);
    margin: 8% auto;
    padding: 1%;
    border-radius: 20px;
}

div.email form {
    width: 90%;
    margin: 28px auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    align-content: space-around;
    gap: 1%;
    justify-content: space-evenly;
}

div.email form input {
    background: rgba(203, 137, 0, 0.68);
    padding: 10px;
    width: 29%;
    color: white !important;
}

input.SignUp {
    clear: both;
    margin: 10px auto;
    width: 33%;
    cursor: pointer;
    color: white;
    font-weight: bold;
    width: 31% !important;
    background: #CB8900 !important;
    border: none !important;
    border: 2px solid #CB8900 !important;
}

input.SignUp:hover {
    background: black !important;
    color: #CB8900 !important;
    border: 2px solid #CB8900 !important;
}

::placeholder {
    color: white;
    opacity: 1;
    /* Firefox */
}

::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: white;
}

div.email form input.SignUp {}

h2 {
    font-family: "Wendy One", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 28px;
    color: #CB8900;
    padding: 14px;
    margin: 0;
    text-decoration: none;
    width: 90%;
    text-align: center;
}

p {
    color: white;
    text-align: center;
}

div.disclaimer {
    width: 74%;
    margin: 10px auto;
    padding-bottom: 100px;
}




/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 767px) {
    a {
        font-family: "Wendy One", serif;
        font-weight: 300;
        font-style: normal;
        font-size: 19px;
        color: black;
        background: #CB8900;
        padding: 8px;
        margin: 0;
        text-decoration: none;
        width: 28%;
        text-align: center;
    }

    div.bussines span {
        font-size: 14px;
    }

    div.bussines {
        margin-top: 8%;
    }

    div.email form {

        flex-direction: column;
    }

    div.email form input {

        width: 90%;
    }

    div.email form input.SignUp {

        width: 100% !important;
    }

    div.disclaimer p {
        font-size: 10px;
    }

    div.email {

        width: 80%;
    }
}