body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    background: url(img/bg.jpg) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh !important;
    margin: 0;
    backdrop-filter: blur(5px);
}
.container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    width: 80%;
    max-width: 800px;
}
h1 {
    color: white;
    grid-column: span 5;
    text-align: center;
}
.button {
    background-color: #6200ea;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    height: 80px;
}
.button:hover {
    background-color: #3700b3;
}
.app{
    display: block;
    padding: 20px;
    color: white;
    border-radius: 10px;
    text-decoration: none;
}
.app:hover{
    background-color: rgba(255,255,255,0.2);
}
.app img{
    background-color: white;
    padding: 5px;
    border-radius: 10%;
    width: 68px;
}