@import url('./font-awesome-4.7.0/css/font-awesome.min.css');

/* 全局样式 */
body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

i.cloud {
    
}

i.cloud::before {
    content:"\f0c2";
    font-family:"FontAwesome";
    font-size:200px;
    color:#007BFF;
    font-style: normal;
}

/* 标题样式 */
h1 {
  color: #333;
  text-align: center;
}

/* 段落样式 */
p {
  color: #666;
  text-align: center;
  margin:0 0 50px 0;
}

/* 按钮样式 */
button {
  font-size:16px;
  background-color: #007BFF;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}