* {
    font-family: Roboto, "Helvetica Neue", sans-serif;
}
#content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2rem;
}

#createReportText {
    width: 14rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    text-align: center;
    margin-bottom: 0;
}

#choosePlace {
    font-size: 20px;
    font-weight: normal;
    color: black;
    text-align: center;
    width: 15rem;
}

#location {
    font-size: 1rem;
    font-weight: normal;
    color: black;
    text-align: center;
    margin: 1rem 0 0 0;
}

#date {
    font-size: 1rem;
    font-weight: normal;
    color: black;
    text-align: center;
}

#day {
    font-size: 1rem;
    font-weight: normal;
    color: black;
    text-align: center;
}

.placeElement {
    cursor: pointer;
    user-select: none;
    background: #F7F4F7;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 15rem;
    padding: 0.5rem;
    border-radius: 3px;
    text-decoration: none;

    margin-top: 1rem;
    color: #5C2649;
    font-size: 18px;
    font-weight: bold;
    font-family: Roboto, "Helvetica Neue", sans-serif;
}

.placeElement:first-child {
    margin-top: 0;
}

.placeElement:hover {
    background-color: #F6E0F4;
    color: #8A005A;
    transition: 200ms;
}

.placeElement p {
    margin: 0;
}

.elementTitle {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 0.5rem;
}

.elementText {
    font-size: 16px;
    font-weight: normal;
    text-align: center;
}