38 líneas
735 B
CSS
38 líneas
735 B
CSS
body{
|
|
background-image: url("/img/home.jpg");
|
|
background-position: center center;
|
|
background-size: cover;
|
|
background-attachment: fixed;
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
.container{
|
|
background: rgba(255, 255, 255, 0.8);
|
|
min-height: calc(100vh - 20px);
|
|
padding-top: 10vw;
|
|
padding-left: 10vw;
|
|
padding-right: 10vw;
|
|
padding-bottom: 10vw;
|
|
-webkit-box-shadow: 0px 0px 12px 8px rgba(0,0,0,0.75);
|
|
-moz-box-shadow: 0px 0px 12px 8px rgba(0,0,0,0.75);
|
|
box-shadow: 0px 0px 12px 8px rgba(0,0,0,0.75);
|
|
/*border-radius: 50% 0 50% 0;*/
|
|
}
|
|
.container h1{
|
|
margin-bottom: 5vw;
|
|
}
|
|
.container form{
|
|
margin-bottom: 5vw;
|
|
}
|
|
|
|
#music{
|
|
margin-top: -7vw;
|
|
margin-right: -5vw;
|
|
}
|
|
|
|
p{
|
|
font-family: "oswald";
|
|
text-align: justify;
|
|
}
|