html {
    background-color: #0d0d0e;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: white;
    margin: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background-color: #0d0d0e;

    background-size: 48px 48px;
    background-position: center top;
    display: flex;
    flex-direction: column;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 700px;
    pointer-events: none;
    background: radial-gradient(ellipse 900px 500px at 50% 0%, rgb(67 97 238), rgba(13, 13, 14, 0) 70%);
    z-index: 0;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 700px;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 0%, #0d0d0e 100%);
    z-index: 0;
}

.main-table {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 64px;
    font-weight: 700;
    padding: 120px 20px 40px;
    letter-spacing: 2px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.border-footer {}

.highlight {
    color: #4361ee;
}

.main-table .material-symbols-outlined {
    font-size: 64px;
}

.blocks {
    flex: 1;
}

.main-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px;
}

.base-button {
    text-decoration: none;
    background-color: #4361ee;
    color: white;
    padding: 14px 26px;
    font-size: 16px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: 2px solid #4361ee;
}

.base-button:hover {
    transform: scale(1.02);
}

.base-button:last-child {
    background-color: transparent;
}

.base-button:last-child:hover {
    background-color: #4361ee;
}

.main-comment {
    display: flex;
    align-items: center;
    justify-content: center;
    color: whitesmoke;
    padding: 20px;
    font-size: 18px;
    opacity: 0.8;
}


.base-center {
    height: 400px;
    background-color: #0d0d0e;
    text-align: center;
}

.image-style {
    margin: 25px;
    box-shadow: 0 0 40px rgb(0 0 0);
    border-radius: 25px;
}

.main-table,
.blocks,
.footer {
    position: relative;
    z-index: 1;
}

