

#top,
#bottom {
    position: fixed;
    left: 0;
    right: 0;
    height: 80%;
}

body {
    top: 0;
    background-color:#36538b;
    background: url('/media/back.jpg') no-repeat bottom center fixed;
    background-size: cover;
    width: 800px;
    
    
}

.head {
    z-index: 2;
    padding:10px;
    background-color:#36538b;
    fill-opacity: 100%;
    border-radius: 25px;
    display: block;
    width: 500px;
    margin: 100px auto 0
}

.head > p{
    color:white;
}

.head>p>a{
    color:white;
}

h1{
    color:#ebc852;
   text-align:center; 
   padding-top:10px;
   padding-bottom:10px;
}

.container {
    background-color: #ebc852;
    border-radius: 25px;
    display: block;
    width: 500px;
    margin: 100px auto 0;
    
  }

  input[type="text"]{
      margin-top: 20px;
      width: 400px;
  }


input[type="checkbox"] {
    background: url('/media/rad.png') 0 0px no-repeat;
    background-size: 100%;
    z-index: 10;
    display: inline-block;
    font-size: 12px;
    height: 40px;
    width: 40px;
    line-height: 16px;
    margin: -2px 6px 0 0;
    text-align: center;
    vertical-align: middle;
    position: relative;
    border-radius: 10px;
    background-color: #ebc852;
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    appearance:none;
    }
    
    input[type="checkbox"]:checked{
    background: url('/media/nuke.jpg') 0 0px no-repeat;
    background-size: 100%;
    height: 40px;
    width: 40px;
    border-radius: 10px;
    

    appearance:none;
    }

li {
    
    overflow: hidden;
    padding: 20px 0;
    border-bottom: 1px solid #ebc852;
    animation: fadein 2s;
  }

  li > label {
    font-size: 18px;
    line-height: 40px;
    width: 237px;
    padding: 0 0 0 11px;
  }

  .strike{
        text-decoration: line-through;
  }
  
  #mediaimage{
    
    width: 75px;
    height:75px; 
    position: absolute;
    right: 25px;
    bottom: 25px;
    background-repeat: no-repeat;
    animation: rotation 2s infinite linear;
  }

  @keyframes rotation {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(359deg);
		}
}


 