 @import url('../font/style.css');

 body{
        box-sizing: border-box;
        background: url(../img/bg.jpg);
        position: relative;
        margin: 0 !important; 
        background-size: cover;
        padding-top: 30px;
        font-family: 'Inter';
        line-height: 1.3;
        display: flex;
        flex-direction: column;   
      }

    h1, h2, h3, h4, h5, h6, p{
        margin-block-start: 0;
        margin-block-end: 0;
        margin-inline-start: 0; 
        margin-inline-end: 0
      }

      footer{
        margin-top: auto;
        padding-bottom: 10px;
        text-align: center;
      }

      .hero{
        display: flex;
        flex-direction: column;
        align-items: center;
        .content-wrapper{
        text-align: center;
        p{
            font-size: 24px;
            font-weight: 500;
            margin-block-start: 0;
        } 
        h2{
            font-size: 64px;
            font-weight: 700;
            margin-block-end: 0;
        }
    }
}



      #allNames {
        width: 100%;
        display: none;
     }

     #display{
        display: none;
        padding-top: 40px;
        overflow: scroll;
        min-height: 100vh;
        background: url(../img/bg.jpg);
        background-size: cover;
        left: 0;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        overflow: scroll;
        .inner{
       display: flex;
        flex-direction: column;
        align-items: center;
         }
         &.flexDisplay{
            display: block;
         }
     }

     .spacer{
        height: 40px;
        width: 100%;
     }

    body {
        min-height: 100vh;
     }

     .closeDisplay{
        position: fixed;
        background: white;
        border-radius: 50%;
        top: 5px;
        right: 5px;
        cursor: pointer;
        width: 50px;
        height: auto;
     }
     .inner{

        margin: auto;
        max-width: 1000px;
        width: 100%;
    }
      

    #errorMessage {
        display: none;
        color: red;
    font-weight: 700;
    font-size: 32px;
    }

    .draw {
        margin: auto;
        padding: 24px 32px;
        border-radius: 4px;
        background:#262C6F;
        border: none;
        color: white;
        font-weight: 700;
        font-size: 48px;
        cursor: pointer;
    &:hover{
      background: #EA2329;
    }
    &:focus {
        outline: none;
    }
}
    input[type="text"], select {
        padding: 31px 40px;
        font-size: 36px;
        background: #D9D9D9;
        color: rgba(0, 0, 0, 0.46);
        border: 0;
      }
      .name-row {
        padding: 6px;
        text-align: center;
        font-size: 72px;
        display: flex;
        justify-content: center;
      align-items: center;
      .name{
        font-weight: 500;
        text-transform: uppercase;
      }
    &:nth-child(odd) {
        background: #b8bacd;
        color: black;
    }&:nth-child(even) {
        background: #262C6F;
        color: white;
    }
}

      .numberInput{      
        width: 100%;
        margin-top: auto;
        margin-bottom: auto;
        .inner{
            display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 20px;
        justify-content: space-between;
    }
    }
.col50{
    width: calc(50% - 48px);
}
    
    #loader {
        display: none;
    }

    .logos {
    display: flex;
    align-items: center;
}

    .copyright{
        padding-top: 5px;
        padding-bottom: 5px;
        font-size: 24px;
        font-weight: 500;
    }


@media screen and (max-width: 767px){
    .name-row {
        font-size: 8.5vw;
    }
    .copyright{
        font-size: 12px;
    }
         .hero .content-wrapper{
        p{
            font-size: 16px;
        } 
        h2{
            font-size: 32px;
        }
    }
.numberInput .inner{
    flex-direction: column !important;
    align-content: center;
    .col50{
        width: 90%;
        margin: auto;  
            input, select{
            width: 90%;
        }
        
    }
} 
}



    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
