body {
    background: rgb(14, 14, 71);
    background: linear-gradient(
            90deg,
            rgba(0, 255, 204, 1) 0%,
            rgba(14, 14, 71, 1) 40%,
            rgba(236, 105, 121, 1) 100%
    );
    background-repeat: repeat;
}

.header {
    margin-top: 15%;;
    display: flex;
    justify-content: center; /* Horizontal centering */
    padding: 5px;
    font-weight: bold;
    font-size: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* x-offset, y-offset, blur-radius, color */
}

.app_store_logos {
    display: flex;
    justify-content: center; /* Horizontal centering */
}

.app_store_logos img {
    padding: 5px;
}

.event {
    margin-top: 2%;
    width: 360px;
    height: 620px;
    border-radius: 16px;
    background: #FFFFFF;
    color: #171923;
    margin-bottom: 20%;
}

.event_title {
    display: flex;
    justify-content: center; /* Horizontal centering */
    padding: 10px;
    font-family: SF Pro Display, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: bold;
}

.event_description {
    padding: 10px;
}

.event_description img {
    border-radius: 10px;
    width: 100%;
    padding-bottom: 8%;

}

.google_play_image {
    width: 198px;
    height: 90px;
    margin-top: -6%;;
}