* {
/*    box-sizing: border-box;*/
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
   justify-content: center;
  /*  align-items: center;*/
    height: 100vh;
}

.container {
    text-align: left;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	    text-decoration: none;
}
.containerl {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.logo {
    width: 100px; /* Adjust width as necessary */
    margin-bottom: 20px;
	text-align: center;

}

.button-container {
    display: flex; /* Align buttons in a row */
    justify-content: center; /* Center the buttons */
	
	  display: flex;
    flex-direction: column;
    gap: 15px; 
	
    margin-top: 5px; /* Space above buttons */
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.button {
   display: inline-block;
   padding: 15px 10px;
    font-size: 18px;
    color: white;
    background-color: #007BFF;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s; 
}

.button:hover {
    transform: translateY(-3px) rotateX(10deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
    color: #000;
    font-size: 24px; /* Larger icons */
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #0000ff; /* Change color on hover */
}

/* Responsive Styles */
@media (max-width: 600px) {
    .logo {
        width: 100px; /* Adjust logo size for smaller screens */
    }

    .button {
        padding: 10px 20px;
        font-size: 14px; /* Smaller buttons on mobile */
    }

    .social-icons a {
        font-size: 20px; /* Smaller icons on mobile */
    }
}