You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
847 B

1 month ago
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
height: 100vh;
background-image: linear-gradient(200deg, #fa2ec7, #d1ef7e);
}
.box {
margin: auto;
width: 1000px;
height: 700px;
border: #fff 4px solid;
background-color: rgba(255, 255, 255, 0.5);
border-radius: 80px;
color: #fff;
text-align: center;
}
</style>
</head>
<body>
<div class="box">
</div>
</body>
</html>