@import url("https://fonts.googleapis.com/css?family=Titillium+Web:300,300italic,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Vollkorn:regular,700,700italic&display=swap");
@import url("https://fonts.googleapis.com/css?family=Vollkorn+SC:regular,700&display=swap");

body {
    font-family: Arial, sans-serif;
    margin: 5%;
    padding: 5%;
    background-color: #f4f4f4;
    background: url(./IMG_6683.JPG) center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

h1 {
    text-align: center;
    font-family:'Vollkorn SC';
    letter-spacing: 2px;
    word-spacing: 10px;
}

.form {
    font-family: 'Vollkorn SC';
    max-width: 500px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    word-spacing: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
    background-color: rgba(255, 255, 255, 0.7);
}

input, textarea, select, button {
    width: 96%;
    margin: 5px 0 25px 0px;
    padding: 10px 6px;
    border: 1px solid #ccc;
    border-radius: 5px;
    /* opacity: 1; */
    resize: none;
}

.wrapPhoto{
    width: 96%;
    border: 1px solid black;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 20px;
}

.file{
    margin: 0;
    padding: 15px 5px;
}

button {
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

.select-day {
    width: 99.5%;
}

.wrapper {
    display: flex;
    justify-content: space-around;
    margin: 10px;
}

.first-obj {
    /* width: 100%; */
}

.second-obj {
width: auto;
}

.submit {
    width: 100%;
    margin-top: 15px;
}
 
 .little-title {
     font-size: 10px;
 }

.load {
    display: none;
}

.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    padding-top: 20%; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.4); 
  }
  .modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    text-align: center;
    border-radius: 8px;
  }
  .close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  .close-btn:hover {
    color: #000;
  }