body{
    background-color: var(--main_color_01);
}
.middle{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}


.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.container .hedding h2{
    color: black;
    margin-bottom: 10px;
}


.container .hedding p{
    color: var(--gray);
    margin-bottom: 50px;
}


.container .dead_line p{
    color: black;
    margin-bottom: 5px;
    text-transform: capitalize;
}



.container .count_down p{
    color: black;
    margin: 30px 0;
    text-transform: capitalize;
    height: 20px;
}


a button{
    color: black;
    margin-bottom: 30px;
    width: 200px;
    padding: 10px;
    background-color: var(--button_01);
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 5px rgb(143, 143, 143);
    color: var(--white);
    text-transform: uppercase;
    cursor: pointer;
    transition: all .5s;
   
}

.container .submit a button:hover{
    transform: translateY(-5px);
}

.container .submit p{
    color: var(--gray);
    font-size: .9rem;
}


.container .submit p a{
    color: var(--orange);
   font-style: italic;
}

.sponcer{
    width: 600px;
    margin-top: 150px;
    
}

.sponcer img{
    width: 100%;
}

.admin-link a{
    color: rgb(255, 255, 255);
    background-color: rgb(238, 106, 30); 
    padding: 5px 30px;
    border-radius: 5px;
    font-weight: 100;
    font-size: small;
    position: absolute;
    bottom: 50px;
    right: 50px;
    text-transform: capitalize;
    text-decoration: none;
}

.admin-link a:hover{
    background-color: rgb(123, 224, 224); 
}

  /* Mobile Phones */
@media only screen and (max-width: 480px) {
   .middle{
    font-size: 1.1rem;
   }

   .sponcer{
    width: 90vw;
    margin-top: 20px;
    }

    .sponcer img{
    width: 100%;
    }

    .admin-link{
    display: none;
    }
}
  
  /* Tablets and Large Phones */
@media only screen and (min-width: 481px) and (max-width: 768px) {
    .middle{
        font-size: 1.2rem;
       }

       .sponcer{
        width: 90vw;
        margin-top: 20px;
        }
    
        .sponcer img{
        width: 100%;
        }

       .admin-link{
        display: none;
        }
}