body {
    margin: 0;
    padding: 0;
    background-color: white;
    margin: 5px;
    border-radius: 10px;
    text-align: center;
}

.main {
    background: white;
}

#header .header-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-image: url("images/concert-hall-8593024_1920.jpg");
    background-size: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 300px;
    /* padding-bottom: 200px; */
} 

.header-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0 0 10px black;
    height: 100%;
}

#content {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* justify-content: center; */
    width: 100%;
    background: rgb(187, 236, 187, 30%);
    margin: auto 0 ;
}

#activities {
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
}

.activities {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
}

.activities img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.footer-main {
    display: flex;
    flex-direction: row;
    width: 400px;  
    justify-content: space-evenly; 
    /* margin-left: auto;
    margin-right: auto; */
    background: rgb(187, 236, 187, 90%);
    margin: 50px auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 4px solid rgba(83, 82, 82, 0.725);
}

#logo-img img  {
    width: 200px;
    height: 250px;
    margin: 15px 0 15px 15px;
    border-radius: 5px;
}

.description {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 5px;
}

.description #description {
    font-style: italic;
}

.description #authur {
    font-weight: 700;
}