:root {
    --main: #1e90ff;
}

/* Body */
body {
    margin: 0;
    background-color: #111111;
    color: #fff;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Content */
.container {
    position: absolute;
    display: flex;
    width: 70%;
    border: 2px solid var(--main);
    border-radius: 12px;
    overflow: hidden;
    z-index: 10;

    /* From https://css.glass */
    background: rgba(17, 17, 17, 0.48);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.2px);
    -webkit-backdrop-filter: blur(5.2px);
}

.logo {
    flex: 1;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40%;
    width: 40%;
    padding: auto;
}

.info {
    flex: 2;
    padding: 20px;
}

.info h1 {
    margin-top: 0;
    color: var(--main);
}

.info p {
    margin: 8px 0;
}

.info p span {
    margin-top: 10px;
}

.cards {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 275px));
    /* 275 */
    gap: 15px;
}

.card {
    background-color: #1c1c1c;
    border-left: 4px solid #1e90ff;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-weight: bold;
    color: #1e90ff;
    margin-bottom: 5px;
}

/* Back Button */
.backToHome {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--button-bg);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-color);
    transition: background-color 0.3s, transform 0.5s;
}

.backToHome:hover {
    background-color: var(--button-hover);
}
