body{
    font-family: "Montserrat", sans-serif;
    background-color: #b5add5;
    height: 50px;
    background-size: cover;
}
nav {
    margin: 0;
    width: 100%;
    background-color:rgb(4, 13, 115) ;
}

ul {
    margin: 0;
    display: flex;
    list-style: none;
    
}

li {
    padding: 1.3rem 1.5rem;
    transition: 0.6s ease-in-out;
}

li a {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: rgb(255, 255, 255);
    transition: 0.6s ease-in-out;
    text-decoration: none;

}
li a:hover{
    color: rgb(151, 249, 156);
}

main{
    font-family: "Montserrat", sans-serif;
    background-color: #ffe7f7;
    display: grid;
    padding: 50px 30px ;
    align-self: center;
   
}


h1{
    font-family: 'Londrina Sketch', sans-serif;
    font-size: 80px;
    color: #080098 ;


}

#intro{
    font-family: "Helvetica";
    font-size: 18px;margin-top: -30px;
    color: #000000 ;
    font-weight: 300;

}

/*contest form*/
    form {
    width: 90%;
    padding: 20px;
    border-radius: 6px;
    background: #bcf0f3;
    box-shadow: 0 0 8px  #000146; 
    margin: auto;
    }
    input, select{
    margin-bottom: 10px;
    border: 1px solid #a1840f;
    border-radius: 3px;
    }
    input {
    width: calc(100% - 30px);
    padding: 5px;
    }
    input[type="date"] {
    padding: 4px 5px;
    }
    textarea {
    width: calc(100% - 12px);
    padding: 5px;
    }
    .item input:hover, .item select:hover, .item textarea:hover {
    border: 1px solid transparent;
    box-shadow: 0 0 3px 0  #a1840f;
  
    }
    .item {
    margin: 10px 0;
    }
    
    .columns {
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    }
    .columns div {
    width:50%;
    }
   
    input[type=radio], input[type=checkbox]  {
    display: none;
    }
    label.radio {
    position: relative;
    display: inline-block;
    margin: 5px 20px 15px 0;
    cursor: pointer;
    }
    .question span {
    margin-left: 35px;
    }
    label.radio:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #033a0a;
    }
    
    label.radio:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 5px;
    width: 6px;
    height: 4px;
    border: 3px solid  #000000;
    border-top: none;
    border-right: none;
    transform: rotate(-60deg);
    opacity: 0;
    }
    input[type=radio]:checked + label:after {
    opacity: 1;
    }
    
    
    button {
    width: 150px;
    padding: 10px;
    border: none;
    border-radius: 5px; 
    background:  #034210;
    color: #c6ec73;
    font-size: 16px;
    cursor: pointer;
    }
    button:hover {
        background:  #c6ec73;
        color: rgb(3, 54, 3);
    }

    footer{
        margin-top: 15px;
        background-color:rgb(2, 8, 74);
        height: 200px;
        color: white;
    }
    
    #copyright{
    display: flex;
    flex-direction: column;
    text-align: left;
    color: rgb(255, 255, 255);
    font-weight: 500;
    padding-left: 10px;
    line-height: 0.10cm;
      }


    @media (min-width: 568px) {
    .name-item, .city-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    }
    .name-item input, .name-item div {
    width: calc(50% - 20px);
    }
    .name-item div input {
    width:97%;}
    .name-item div label {
    display:block;
    padding-bottom:5px;
    }
    }