body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.container {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
}

.tiles {
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
    gap: 1rem;
    justify-content: center;
}

.tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    background-color: #fff;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}


header {
    background-color: #f8f9fa;
    padding: 50px;
    text-align: center;
    position: relative;
}

header p {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    margin: 0;
}

form label,
form input,
form select {
  margin-bottom: 10px;
}
  

audio {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}
.login-popover {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 20px;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


@media screen and (max-width: 320px) {
    .tiles {
        gap: 10px;
    }

    .tile {
        width: calc(50% - 10px);
    }
   
    
}
