#content {
    width: 90%;
    margin-top: 20px;

    background: rgba(255,255,255,0.8);
    border-radius: 10px;
    border: 1px groove #999;
    box-shadow: 0 -5px 200px rgba(0,0,0,0.2);
    padding: 50px;
		  
}

@media (width > 1400px) {
    #content {
	width: 70%;
    }    
}

@media (width > 500px) and (height > 600px) {
    body {
	background: white url("image.png") no-repeat;
    }
    #content {
	margin-top: 160px;
    }
}

h2 {
    font-weight:800;
    font-size:30px;
    color: var(--style-color);
}

hr {
    border: 3px solid var(--style-color);
    border-radius: 2px;
}

.btn {
    background: var(--style-color);
    color:white;
    font-weight:600;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem var(--style-color-transparent);
    border-color: #ced4da;
}

.form-check {
    padding-top: 8px;
}
