@charset "UTF-8";

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F5F5F5;
    text-align: center;
    padding: 40px;
}

h1 {
    color: #004AAD;
    font-weight: 700;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 40px;
}
.container {
    margin: auto;
    height: auto;
   padding: 50px; 
   display: contents;
}

.logo {
    max-width: 140px;
    margin-bottom: 20px;
}

.btn-platform {
    background-color: white;
    border: 2px solid #004AAD;
    color: #004AAD;
    font-weight: 600;
    border-radius: 15px;
    padding: 25px;
    width: 500px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-platform img {
    width: 260px;
    height: auto;
    margin-bottom: 20px;
}

.btn-platform:hover {
    background-color: #004AAD;
    color: white;
    transform: translateY(-5px);
}

.btn-platform:hover img {
    filter: brightness(0) invert(1);
}

.btn-platform:hover {
    background-color: #004AAD;
    transform: translateY(-5px);
}

.footer{
    margin-top: 100px;
    padding: 20px;
    text-align: center;
    text-decoration: dashed;
    color:#4b4c4d;
    background-color: white;
    border-radius: 50px;
}

