body{
    padding:0;
    margin:0;
    font-family: Comic Sans MS;
}
.event_main{
    text-align: center;
}
.event_main #logo{
    width:300px;
    height:140px
}
#about{
    text-align: center;
    color:rgb(213, 88, 109);
    line-height: 1.5em;
    text-align: center;
    line-height: 2em;
}
#about h3{
    margin-top: -10px;
}

.event_main #theme_wedding{
    border-radius: 10px;
    border:2px solid black;
    box-shadow: 10px 10px 5px 0 rgba(0, 0, 0, 0.5); 
    margin-right: 42%;
    margin-left:42%;
}

.theme-content{
    text-align: center;
}

#horizontal-line{
    margin:30px;
    border:2px solid black;
    border-radius: 40%;
    border-color: rgb(102, 44, 54);
}

.img_box{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

#img img{
    border-radius: 16px;
    width: 25em;
    height:20em;
    margin-left: 10px;
    margin-top: 10px;
    justify-content: space-evenly;
    transition: transform 0.5s;
    border: 2px solid rgb(70, 66, 66) ;
    
}

#img img:hover {
    transform: scale(1.1); 
    box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.5);
}

#name{
    width:fit-content;
    height:auto;
    border:2px solid black;
    padding: 10px;
    border-radius: 10px;
    margin-left: 44%;
    color:rgb(219, 63, 89);
    font-size:30px;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.5);

}


.theme-content #description{
    line-height: 2em;
}


#buttons input{
    border: 2px solid rgb(238, 39, 72);
    color: black;
    padding: 15px 20px;
    /* text-align: left; */
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 4px 4px 8px 0 rgba(0,0,0,0.2);
    width:fit-content;
    margin-top:20px;
    
    
}
#buttons input:hover {
    color: rgb(149, 4, 29); 
    background-color: rgb(235, 229, 229);
}


/* 
marquee {
    white-space: nowrap; 
    overflow-x: hidden;
    padding-left: 10px;
    animation: marquee 5s linear infinite;
  } 
  */


#buttons{
    display:flex;
    justify-content: end;
    margin-right: 40px;
    margin-top: 10px;
}

#contact{
    padding-left: 10px;
}


@media screen and (max-width:600px){
    .event_main #logo{
        width:150px;
        height:100px
    }
    #about{
        text-align: center;
        color:rgb(213, 88, 109);
        line-height: 1.7em;
        font-size: 13px;
    }
    .event_main #theme_wedding{
        border-radius: 10px;
        border:2px solid black;
        box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.5); 
        margin-right: 25%;
        margin-left:25%;
    }
    #name{
        margin-left: 34%;
        font-size:15px;
    }
    .theme-content #description{
        line-height: 1.8em;
        font-size: 13px;
    }
    #img img{
        width: 10em;
        height:10em;
        margin-left: 10px;
        margin-top: 10px;
        justify-content: space-evenly;
    }
    .img_box div:nth-child(3){
        display: none;
    }
    #buttons input{
        padding: 8px 10px;
        font-size: 13px;
        cursor: pointer;
    }
    #buttons{
        margin-right: 81px;
        margin-top: 10px;
    }
    .img_box #img img {
        width: 90%;
        height: 300px;
      }
}