* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    background: url(bg.png) center center/cover no-repeat;
    font-family: 'Raleway',
        sans-serif;
    height: 100vh;
}

.container {
    width: 700px;
    margin: 0 auto;
    margin-top: 50px;
    background-color: #fff;
    min-height: 600px;
}


.title {
    color: #2ab7e0;
    font-size: 80px;
    font-family: 'Lobster', cursive;
    font-weight: 400;
    text-align: center;
}

.header {
    padding: 150px 50px 50px 50px;
}

.name {
    color: #94cf59;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.enter-button {
    margin-top: 30px;
    font-weight: 400;
    text-align: center;
    font-size: 20px;
}

.button {
    cursor: pointer;
    display: block;
    margin: 50px auto 0 auto;
    width: 200px;
    height: 50px;
    border: none;
    background: linear-gradient(to top, #b1dd82, #94cf59);
    font-weight: 400;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 3px 3px 2px rgb(233, 233, 233);
    border-radius: 5px;
}

.button:hover {
    background: linear-gradient(to bottom, #b1dd82, #94cf59);
}

.button-disabled {
    cursor: inherit;

}

.prize-name {
    text-transform: uppercase;
}