Как убрать нижнюю линию на сайте?
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Test</title>
<link rel="stylesheet" href="page.css">
</head>
<body>
<div class="container">
<h1>Test</h1>
<p>Test</p>
<a href='/mazgagram/chat' class="enter-button">Test</a>
</div>
</body>
</html>
CSS
body {
margin: 0;
padding: 0;
background: linear-gradient(to bottom, #2c3e50, #3498db);
font-family: sans-serif;
}
.container {
width: 100%;
max-width: 960px;
margin: 0 auto;
padding: 100px 0;
text-align: center;
color: #fff;
}
h1 {
font-size: 4rem;
margin-bottom: 2rem;
}
p {
font-size: 1.5rem;
margin-bottom: 3rem;
}
.enter-button {
display: inline-block;
padding: 1.2rem 2rem;
font-size: 1.5rem;
background-color: #fff;
color: #2c3e50;
border-radius: 30px;
border: none;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
}
.enter-button:hover {
background-color: #2c3e50;
color: #fff;
}