html,
body {
    color: white;
}

.link {
    color: #8ab4f8;
}

.background {
    width: 100vw;
    height: 100vh;
    background-image: url("../../img/roadmap/bg.webp");
    background-size: cover;
    position: fixed;
    z-index: -1;
}

.container {
    text-align: center;
    margin-top: 100px;
}

.title {
    font-size: 12vw;
}

h2 {
    font-weight: 400;
    color: #ffffff;
}

.center-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: rgba(20, 30, 35, 0.4);
    border: solid 1px #ffffff24;
    border-radius: 20px;
    padding: 2rem;
    width: calc(100% - 9vw);
    max-width: 36cm;
    margin: 20px auto 0 auto;
    box-shadow:
        inset 0 1px 1px 0 #ffffff24,
        0 8px 32px 0 #fff0;
    text-align: left;
}

.center-wrapper p {
    margin-top: 5px;
    max-width: 600px;
}

.center-wrapper img {
    max-height: 200px;
    max-width: max(200px, calc(100% - 600px));
    border-radius: 20px;
}

.vote-buttons {
    width: 100%;
    margin-top: 30px;
    margin-right: 10px;
}
.vote-buttons button {
    background: none;
    border: none;
    cursor: pointer;
}
.vote-buttons svg {
    fill: gray;
}

.response {
    text-align: center;
    margin: 50px;
}
.response form {
    display: flex;
    flex-direction: column;
}
.response textarea {
    border-radius: 20px 20px 0 0;
    padding: 10px;
    background-color: rgba(20, 30, 35, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: white;
    font-size: 14px;
}
.response button {
    background-color: rgba(20, 30, 35, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #3edce2;
    border-radius: 0 0 20px 20px;
    padding: 5px;
    cursor: pointer;
}
.response button:hover {
    background-color: rgba(20, 30, 35, 1);
}
