body{
    background: linear-gradient(to right, #0c5eaa, #1093cb);
}

.content {
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center;    
    height: 100vh;  
    gap: 50px;         
}

img{
    width: 50%;
}

.button {
    font-family: Arial, Helvetica, sans-serif;
    display: inline-block;
    padding: 12px 24px;              
    background-color: white;          
    color: #0c5eaa;                       
    text-align: center;                 
    text-decoration: none;              
    border-radius: 5px;                 
    font-size: 16px;                    
    font-weight: bold;                  
    border: none;                       
    cursor: pointer;                   
    transition: background-color 0.3s;  
}

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

.button:active {
    background-color: #004085;          
}
