body {
    background-image: url(../media/cabin-flowersGif.gif);
    overflow-y: auto;
}

.container {
    max-width: 600px;
        background: #ffffff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 500px;
        max-height: 90vh; 
        overflow-y: auto; 
    
}

.card {
    border-radius: 10px;
    overflow: hidden;
}

.card-header {
    text-align: center;
    font-weight: bold;
}

.form-control, .form-select {
    border-radius: 8px;
}

.btn {
    border-radius: 8px;
    font-weight: bold;
}
label{
    font-size: larger;
    text-decoration: solid;
    font-style: italic;
    border-radius: 15%;
    padding: 2%;
    color: black;
font-weight: 500;
}
header{
    text-align: center;
 padding-top: 5%;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: x-large;
}
#summitButton{
    padding: 10px 20px;
            font-size: 16px;
            background-color:blue;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
}
Button:hover{
    background-color:yellow;
}
/* Basic CSS to make the video full-screen background */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
  }
  
  #bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: -1;
  }
  