@import "./general.css";

.article-section{
    max-width: 1280px;
    display: flex;
    width: 100%;

    padding-top: 100px;
    
}

.header-card span {
    font-size: 12px;
    font-weight: 600;
    color: #8d9ba2;
  }
.header-card{
    padding: 10px 0;
}  

h1{
    font-size: 36px;
    font-weight: bold;

}
h2{
    font-size: 22px;
    font-weight: bold;
    color: #524ff5;
    padding-bottom: 10px;
}
p{
    font-weight: 400;
    padding-bottom: 10px;
}
label{
    width: 100%;
    padding: 10px 10px;
}
input{
    border: 1px solid lightgray;
    border-radius: 7px;
    padding: 10px 10px;
    width: 100%;
}

textarea{
    border: 1px solid lightgray;
    border-radius: 7px;
    padding: 10px 10px;
    width: 100%;
    resize: vertical;
}
.weather {
    background-color: #524ff5;
    border-radius: 8px;
    padding: 8px 100px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  
.event {
    background-image: url("../images/image1.jpg");
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: space-around;
    padding: 10px;
    border: black solid 1px;
    position: relative;
  }
  .event .background{
    position: absolute;
    background-color: #1f9c9480;
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 1;
  }
  
  .event h2 {
    font-size: 20px;
    font-weight: 600;
    display: inline;
    color: black;

  }
  
  .event h3 {
    color: black;
    font-weight: 400;
    font-size: 12px;
  }
  .event-date {
    background-color: white;
    padding: 5px 15px;
    border-radius: 7px;
    height: max-content;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 999;

  }
  .event-date p{
    padding: 0;
  }

  .card {
    background-color: white;
    margin: 25px 0;
    width: 350px;
    display: flex;
    flex-direction: column;
    text-align: start;
    border-radius: 4px;
    box-shadow: -1px 5px 5px 0px rgba(0, 0, 0, 0.26);
    -webkit-box-shadow: -1px 5px 5px 0px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: -1px 5px 5px 0px rgba(0, 0, 0, 0.26);
  }
  .card h2 {
    font-size: 21px;
    font-weight: bold;
    color: black;
  }
  .card img {
    border-radius: 0px 4px;
    margin-bottom: 15px;
  }
  .card p {
    padding: 10px;
    color: #8d9ba2;
    font-weight: 400;
    font-size: 12px;
  }
  
  .header-card span {
    font-size: 12px;
    font-weight: 600;
    color: #8d9ba2;
  }

  #selector{
    position: absolute;
    bottom: -135px;
    background-color: white;
    z-index: 100;
    width: 47.3%;
    padding-right: 15px;
  }
  .selector-display{
    display: none;
  }
  #selected_option{
    font-size: 16px;
    font-weight: bold;
  }
  .option{
    text-transform: uppercase;
    width: 100%;
    border: #8d9ba2 solid 1px;
    padding: 12.5px 0;
    padding-left: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
  }