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

View File

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