@import "main.css";

.container {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: flex-start;
}

.roulette {
    margin-top: 14px;
    width: 1067px;
    height: 277px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    background: rgb(140,0,255);
    background: linear-gradient(157deg, rgba(140,0,255,1) 0%, rgba(182,93,255,1) 100%);
    background: url(../images/roulette.png);
    border-radius: 30px;
}

.wheel {
    margin-top: 46px;
    width: 100%;
    padding: 0 121px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.description {
    margin-top: 20px;
    width: 142px;
    height: 36px;
    background: #fff;
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 17px;
    border-radius: 14px;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 0.5);
    -moz-box-shadow:    0px 0px 8px 0px rgba(255, 255, 255, 0.5);
    box-shadow:         0px 0px 8px 0px rgba(255, 255, 255, 0.5);
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.container h1 {
    font-family: "Panton", sans-serif;
    font-size: 25px;
    text-transform: none;
    font-weight: 600;
    margin-top: 48px;
    height: 25px;
}

.spin button{
    background: rgb(84,0,153);
    background: linear-gradient(157deg, rgba(84,0,153,1) 0%, rgba(179,87,255,1) 100%);
    margin-top: 49px;
    width: 276px;
    height: 75px;
    border-radius: 38px;
    font-family: "Archive", sans-serif;
    font-size: 24px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.spin img {
    margin-top: -2px;
    margin-left: 20px;
}

.prizes {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
}

.prizes h6 {
    align-self: flex-end;
    font-size: 25px;
    font-family: "Panton", sans-serif;
    font-weight: 600;
}

.items {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
}

.row {
    margin-top: 23px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.items .item {
    margin-left: 32px;
}

.items .item:first-child {
    margin: 0;
}

footer {
    margin-top: 99px;
}
