@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #264653;
    height: fit-content;
    width: 100%;
    padding-left: 100px;
    padding-right: 100px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: fit-content;
    width: 100%;
    padding: 15px 50px 50px 50px;
}

.titleSection {
    text-align: center;
    height: fit-content;
    width: 100%;
    padding: 15px;
    padding-top: 50px;
}

.titleSection h1 {
    background: linear-gradient(#ff9f1c, #e9c46a);
    font-size: 72px;
    line-height: 75px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.titleSection p {
    font-weight: 600;
    color: #c9d5ee;
}

.inputSection, .secondInputSection, .thirdInputSection {
    height: fit-content;
    width: 100%;
    text-align: center;
    padding-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thirdInputSection {
    width: 44.2%;
    flex-direction: column;
}

.thirdInputSection h2 {
    color: #fff;
    margin-right: 20px;
    text-transform: uppercase;
}

.inputSection input, .inputSection button, .secondInputSection input, .secondInputSection button {
    padding: 13px 20px;
    outline: none;
    border: none;
    border-radius: 3px;
    margin: 3px;
}

.inputSection input {
    width: 40%;
}

.inputSection button, .secondInputSection button {
    width: 15%;
    cursor: pointer;
    background-color: #2a9d8f;
    color: #fff;
    font-weight: bold;
    transition: 0.4s ease;
}

.inputSection button:hover, .secondInputSection button:hover {
    opacity: 0.7;
}

.secondInputSection #start_date, .secondInputSection #end_date {
    width: 19.8%;
}

.mediaContainer {
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
}

.mediaContainer img, .mediaContainer iframe {
    width: 80%;
    height: 500px;
    margin-top: 15px;
}

.mediaContainer iframe {
    border: none;
}

.mediaContainer h2 {
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.mediaContainer p {
    width: 80%;
    margin-top: 15px;
    color: #e7e8eb;
    font-weight: 400;
    margin-bottom: 55px;
    text-align: center;
}




