
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0;
    padding: 0;
    color: #333;
}

.entry {
    margin: 20px;
    font-size: 2em;
    padding-bottom: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.title-item {
    font-size: 2.6em;
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, #ff6b6b, #ffa726);
    border: none;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 80px;
}

.title-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.item00 {
    font-size: 3em;
    font-weight: 500;
    color: rgb(0, 0, 0);
    background: linear-gradient(45deg, #f264b5, #b4317b);
    border: none;
    border-radius: 15px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.item01 {
    font-size: 3em;
    font-weight: 500;
    color: rgb(0, 0, 0);
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    border: none;
    border-radius: 15px;
    /* height: 80px; */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item01:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.row {
    display: flex;
    margin-bottom: 10px;
}

.column {
    flex: 1;
    display: flex;
}

.col1 {
    width: calc(1 / 12 * 100%);
}

.col7 {
    width: calc(7 / 12 * 100%);
}

.col4 {
    width: calc(4 / 12 * 100%);
}