
html {
    height: 100%;
}
@font-face {
    font-family: Freight;
    src: url('/fonts/freighttext-pro-semi-bold-regular.ttf');
}

body {
    font-family: Freight, serif;
}

body {
	background-color: #b62226;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images2/bg.png');
    background-repeat: repeat;
        background-size: 100% auto;      /* full width, auto height */


}

#logoimg, #leftimg, #rightimg, #botimg {
    width: 100%;
}
a {
    text-decoration: none;
}

#content {
    display:flex;
    flex-direction: row;
    height: 100%;
}

#columnleft {
    width: 100%;
    background-image: url('/images2/left.png');
    background-size: 100% auto;      /* full width, auto height */
    background-repeat: repeat-y;     /* repeat vertically */
    background-position: top center; 
    animation: scrollUp 120s linear infinite;

}
@keyframes scrollUp {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 -1875px;
    }
}
#columncenter {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#interactivecontentdiv {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

#koopdiv {
    display: flex;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
#columnright {
    width: 100%;
    background-image: url('/images2/right.png');
    background-size: 100% auto;      /* full width, auto height */
    background-repeat: repeat-y;     /* repeat vertically */
    background-position: top center; 
        animation: scrollUp 120s linear infinite reverse;

}

#email {
    font-size: 1.3rem;          /* Larger font size */
    padding: 12px 16px;         /* More padding for easier clicking */
    /*width: 100%;                /* Full width of container */
    box-sizing: border-box;     /* Include padding in width */
    margin-bottom: 12px;        /* Space below input before button */
    border: 2px solid #ccc;     /* Subtle border */
    border-radius: 6px;         /* Rounded corners */
    outline: none;              /* Remove default focus outline */
    transition: border-color 0.3s ease;
    text-align: center;         /* Center text in input box */
    display: block;
    margin: 0 auto;
}

#email:focus {
    border-color: #227493;      /* Blue border on focus */
}

#koopdiv a {
    font-size: 2rem;
}
.coolbutton {
    font-size: 1.3rem;          /* Larger font size */
    padding: 14px 24px;         /* Bigger button padding */
    background-color: white;  /* white background */
    color: #b62226;               /* red text */
    border: none;               /* Remove default border */
    border-radius: 6px;         /* Rounded corners */
    cursor: pointer;            /* Pointer cursor on hover */
    transition: background-color 0.3s ease;
    margin: 0 auto;
}
.coolbutton:hover {
    color: black;   
}
#submit {
       display: block;

}

#submit:hover {
    color: black;  }

#submit:disabled, submit:hover:disabled {
    background-color: #d0b959;     /* Greyed out when disabled */
    cursor: not-allowed;        /* Not allowed cursor */
    color: white;
}
	
.robot-check-container {
    margin-bottom: 12px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally */
    font-size: 1.3rem; /* Match submit button font size */
    color: white; /* Default text color */
}

.robot-check-container input[type="checkbox"] {
    margin-right: 10px;
    /* Adjust checkbox size if needed */
    width: 20px; /* Example size */
    height: 20px; /* Example size */
}

.robot-check-container label {
    /* Inherits font-size and color from parent */
}

#robotMessage {
    color: white;
    display: none;
    margin-left: 10px;
    font-size: 1rem; /* Slightly smaller than label for emphasis */
}

#instalogo {    display: block;
    margin: 50px auto 0;
    width: 50px;
    padding-bottom: 10px;
}



@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    #columnleft, #columnright {
        width: 20%;
    }
    #columncenter {
        width: 60%;
    }

    #koopdiv {

    margin-top: 20px;
    margin-bottom: 20px;
    }
    #koopdiv a {
        font-size: 1rem;
    }
    .coolbutton {
    font-size: 0.7rem;          /* Larger font size */
        padding: 7px 12px;         /* Bigger button padding */


}
#email {
    font-size: 0.7rem;          /* Larger font size */
        padding: 6px 8px;         /* More padding for easier clicking */


}
	
.robot-check-container {
    font-size: 0.7rem; /* Match submit button font size */
}
#robotMessage {

    font-size: 0.5rem; /* Slightly smaller than label for emphasis */
}
#instalogo {    display: block;
    margin: 25px auto 0;
        width: 25px;

}
}