﻿.green-background {
    display: flex;
    background-color: #CCFF00;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.logo-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom:50px;
    margin-left: auto;
    margin-right: auto;
}

.logo-container img {
    width: 15%;
}

.middle-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 75px;
}

.view-event-button {
    color: white;
    background-color: black;
    border: 2px solid white;
    border-radius: 25px;
    padding: 5px 45px;
    font-size: large;
}

.overflow-heading {
    margin-top: 30px;
}

.powered-by-container {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    column-gap: 80px;
    margin-top: 30px;
    margin-bottom: 50px;
}

/*Left column*/
.powered-by-container > div:nth-of-type(1) {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
    row-gap: 20px;
}

.powered-by-container > div:nth-of-type(1) > div {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    column-gap: 10px;
}

.powered-by-container > div:nth-of-type(1) > div > img {
    height: auto;
    width: 25px;
}

/*Right column*/
.powered-by-container > div:nth-of-type(2) {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    column-gap: 10px;
}

.powered-by-container > div:nth-of-type(2) > div:nth-of-type(1) {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background-color: black;
}

.powered-by-container > div:nth-of-type(2) > div:nth-of-type(2) {
    display: flex;
    flex-direction: column;
}

.download-button {
    color: white;
    background-color: black;
    padding: 10px 50px;
    border-radius: 25px;
    font-size: large;
}