* {
    font-family: 'Arial';
}

body,html {
    background-color: #f2f2f5;
    margin: 0;
    padding: 0;
}

p {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

.header {
    display: flex;
    align-items: center;
    background-color: #000032;
    color: white;
    height: 72px;
}

.header-content {
    margin: 0 auto;
    max-width: 1240px;
    width: 100%;
    padding: 0px 20px;
}

.header-info {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 10%);
}

.content {
    width: 500px;
    max-width: 500px;
     padding: 20px;
}

.content textarea {
    width: -webkit-fill-available;
    height: 100px;
    resize: vertical;
}

.content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 20px;
}

.content-container .content {
    background-color: white;
    margin: 20px;
    border-radius: 2px;
    box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 10%);
}

.button {
    background-color: #01b67a;
    border: 0;
    padding: 10px 20px 10px 20px;
    color: white;
    cursor: pointer;
    margin: 0px 40px;
    border: 0;
    border-radius: 0px;
    -webkit-appearance: none;
}

.button:hover {
    background-color: #029f66;
}

.rating {
    position: relative;
}

.rating-selector {
    position: absolute;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.rating-selector input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    cursor: pointer;
}

.rating-star {
    width: 50%;
}

.rating-star img {
    width: 100%;
}

@media only screen and (max-width: 600px) {
    .content {
        width:  80%;
    }
}