/* this is for the landing page, dont mess with this */
/* reesaldle, szvy and brunys made this */
/* added card stuff and lander looks better */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    background-color: rgb(24, 24, 24);
    color: white;
    font-family: 'Montserrat', sans-serif;
}

#landerheader {
    font-size: 80px;
    color: #fff;
    text-align: center;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.6),
        0 0 15px rgba(255, 255, 255, 0.4),
        0 0 20px rgba(255, 255, 255, 0.2);
}

#subtext {
    font-size: 35px;
    text-align: center;
}

button {
    font-family: 'Montserrat', sans-serif;
    background-color: rgba(0, 0, 0, 0.342);
    border-radius: 5px;
    justify-content: center;
    display: flex;
    border-style: solid;
    border-width: 5px;
    border-color: white;
    outline: none;
    transition: all ease-in-out 0.2s;
    padding: 10px;
    font-size: 30px;
    color: white;
    justify-self: center;
    width: 20%;
}

button:hover {
    transform: scale(1.07);
}

#buttonss {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 16px;
    background-color: rgb(24, 24, 24);
}

.card {
    padding: 16px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}
