#event_page{
    width: 100%;
    height: 100vh;
}

#event_container{
    width: 80%;
    margin-left: 10%;
    padding: 7vh 0;
}


#event_container h1{
    font-size: 5vw;
    font-weight: 400;
    color: teal;
    margin-bottom: 20px;
    text-align: center;
}

#event_container p{
    font-size: 1.5vw;
    color: grey;
    text-align: justify;
    margin: 10px 0;
}

#event_container img{
    width: 100%;
}

#flag_text{
    width: 30% !important;
    margin-bottom: 20px;
}

@media screen and (max-width:768px) {
    #event_container h1{
        font-size: 6vw;
    }
    
    #event_container p{
        font-size: 2vw;
        margin-bottom: 20px;
    }
    
    #event_container img{
        width: 100%;
    }
}

@media screen and (max-width:480px) {
    #event_container h1{
        font-size: 9vw;
    }
    
    #event_container p{
        font-size: 2.7vw;
    }
    
    #event_container img{
        width: 100%;
    }
}