* {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    /* position: relative; */
    background-color: #212121;
}

.bg {
    position: absolute;
    width: 100%;
    height: 100vh;
    background: url("../img/bg.jpg") no-repeat top center;
    -o-background-size: 100vh auto;
    background-size: 100%;
    opacity: 0.2;
    z-index: -1;
}

.main {
    width: 800px;
    /* min-width: 800px; */
    height: 100%;
    margin: 0 auto;
    /* border: 5px solid #dd3333; */
    padding: 150px;
    color: #fff;
    text-align: center;
}

.dropdown .dropdown-menu {
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
}

.resultBox {
    margin-top: 50px;
    font-size: 20px;
}

.buttonBox {
    margin: 50px auto;
    text-align: center;
}

.buttonBox .mybtn {
    float: left;
    width: 200px;
    height: 50px;
    border: 2px solid #F8C013;
    font-size: 24px;
    line-height: 50px;
    cursor: pointer;
}

.buttonBox .mybtn:nth-child(2) {
    border: 1px solid #53BDF4;
    float: right;
}

.buttonBox .clear {
    clear: both;
}

.randomBox img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 15px;
    display: none;
}

.randomBox .name {
    font-size: 36px;
    font-weight: 300;
}

.markNamesBox {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    bottom: 20px;
    left: 0;
}

.markNamesBox .nameblock {
    padding: 5px 10px;
    border-radius: 3px;
    background: #fff;
    color: #56c5ff;
    font-weight: 400;
    font-size: 24px;
    margin: 20px;
    -webkit-box-shadow: 0 3px 6px #fff, 0 0 10px;
    box-shadow: 0 3px 6px #fff, 0 0 10px;
}

.fileContainer {
    overflow: hidden;
    position: relative;
    /* position: absolute; */
}

.fileContainer[type=file] {
    cursor: inherit;
    display: block;
    font-size: 999px;
    filter: alpha(opacity=0);
    min-height: 100%;
    min-width: 100%;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: right;
    top: 0;
}

.fileContainer {
    width: 200px;
    background: #5CB85C;
    border-radius: 6px;
    /* float: left; */
    text-align: center;
    /* margin: 0 auto; */
    padding: 5px;
    font-size: 26px;
    color: white;
    font-family: inherit;
    font-weight: 400;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -16px;
}

.fileContainer[type=file] {
    cursor: pointer;
}