body {
    background-image: url('images/puzzle_intro.png'), url('images/puzzle_bg.png');
    background-color: #224E71;
    background-repeat: no-repeat, repeat;
    background-size: cover, cover; /* Resize to cover the entire container */
    background-attachment: relative;
}

/* @font-face creates a font-family */
@font-face {
    font-family: 'Komika'; /* Desired name for webfont */
    src: url(webfonts/komikatitle_regular_macroman/KomikaTitle-webfont.woff);
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url(webfonts/roboto_condensed_macroman/RobotoCondensed-Regular-webfont.woff);
}

/* Make members of class unselectable/undraggable */
.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

#container {
    width: 1080px;
    margin-top: 50px;
    margin-left: 50px;
}

#steps {
    margin-left: auto;
    margin-right: auto;
    width: 550px;
}

#game_name {
    font-family: 'Komika', sans-serif;
    font-size: 150px;
    color: white;
    margin-left: auto;
    margin-right: auto;
}

.text {
    border-radius: 100px;
    padding: 30px 100px 50px 100px;
    background-image: radial-gradient(ellipse, #224E71 20%, transparent);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 24px;
    color: white;
}

#start_btn {
    font-family: 'Komika', sans-serif;
    background-color: white;
    border: none;
    border-radius: 20px;
    color: #224E71;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 80px;
    cursor: pointer;
}

.back_btn {
    position: absolute;
    left: 0px;
    cursor: pointer;
}