@charset "utf-8";

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


img{
    width: 100%;
    vertical-align: bottom;
}

body {
    font-family: "Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","Yu Gothic",游ゴシック,YuGothic,游ゴシック体,Meiryo,メイリオ,sans-serif;
    font-weight: bold;
    text-align: center;
    background: url(../img/haikei.jpg) no-repeat;
    background-position: center;
    background-attachment: fixed;

}

.container {
    margin-top: 35vh;
}

h1 {
    color: #c0392b;
}

p{
    margin-top: 20px;
}

#omikujiBtn{
    width: 20%;
    margin: 0 auto;
    cursor: pointer;
}

#omikujiBtn:hover{
    transform: rotate(25deg);
}

#result {
    display: none;
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0 40px;
    padding: 20px 80px;
    display: inline-block;
    background-color: white;
    border: 2px solid #c0392b;
    border-radius: 5px;
}


#retryBtn{
    display: none;
    border: none;
    cursor: pointer;
    color: #c0392b;
    background: none;
    padding: 0;
    border: none;
    cursor: pointer;
}

#retryBtn:hover{
    color: #c03a2bbd;
}

@media screen and (min-width:960px) {
    #omikujiBtn{
        width: 10%;
    }
    .container {
        margin-top: 25vh;
    }
    #result{
        margin-top: 40px;
    }
}