This commit is contained in:
2024-04-30 12:44:51 +02:00
parent b7d1490482
commit 7ea7bc3b11

View File

@@ -1,7 +1,10 @@
body{ @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
background-image: url("img/backround.jpg");
body{
background-color: blueviolet;
background-position: right top; background-position: right top;
background-size: cover; background-size: cover;
font-family: 'Roboto', sans-serif;
} }
h1{ h1{
text-align: center; text-align: center;
@@ -127,10 +130,12 @@ button {
background: transparent; background: transparent;
color: white; color: white;
font-size: 16px; font-size: 16px;
transition: background 0.3s ease; transition: background 0.3s ease, box-shadow 0.3s ease;
border-radius: 5px;
} }
button:hover button:hover
{ {
background: #ff5c33; background: #ff5c33;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
} }