78 lines
		
	
	
		
			No EOL
		
	
	
		
			1.2 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			No EOL
		
	
	
		
			1.2 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| body {
 | |
|     margin: 0;
 | |
|     padding: 0;
 | |
|     font-family: Arial, sans-serif;
 | |
|     height: 100vh;
 | |
|     width: 100vw;
 | |
| }
 | |
| 
 | |
| html {
 | |
|     background: linear-gradient(#1e4e9c, #9198e5);
 | |
|     height: 100%;
 | |
|     width: 100%;
 | |
| }
 | |
| 
 | |
| 
 | |
| .container {
 | |
|     position: absolute;
 | |
|     top: 50%;
 | |
|     left: 50%;
 | |
|     transform: translate(-50%, -50%);
 | |
|     max-width: 600px;
 | |
|     padding: 20px;
 | |
|     background-color: rgba(0, 0, 0, 0.5);
 | |
|     border-radius: 10px;
 | |
|     box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
 | |
|     text-align: center;
 | |
|     color: #fff;
 | |
| }
 | |
| 
 | |
| .coming-soon {
 | |
|     text-align: center;
 | |
|     max-width: 600px;
 | |
|     padding: 20px;
 | |
| }
 | |
| 
 | |
| .logo img {
 | |
|     width: 150px;
 | |
|     margin-bottom: 20px;
 | |
| }
 | |
| 
 | |
| h1 {
 | |
|     font-size: 2.5rem;
 | |
|     margin: 10px 0;
 | |
| }
 | |
| 
 | |
| p {
 | |
|     font-size: 1.2rem;
 | |
|     margin: 10px 0 20px;
 | |
| }
 | |
| 
 | |
| .subscription {
 | |
|     margin-top: 20px;
 | |
| }
 | |
| 
 | |
| .subscription input {
 | |
|     padding: 10px;
 | |
|     font-size: 1rem;
 | |
|     width: calc(100% - 110px);
 | |
|     border: none;
 | |
|     border-radius: 10px;
 | |
|     outline: none;
 | |
| }
 | |
| 
 | |
| .subscription button {
 | |
|     padding: 10px 20px;
 | |
|     font-size: 1rem;
 | |
|     background: #ff4500;
 | |
|     border: none;
 | |
|     border-radius: 10px;
 | |
|     color: #fff;
 | |
|     cursor: pointer;
 | |
|     outline: none;
 | |
|     margin-top: 10px;
 | |
| }
 | |
| 
 | |
| .subscription button:hover {
 | |
|     background: #e03e00;
 | |
| } | 
