@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;700&display=swap');


body {
    margin: 0;
    padding: 0;
    background-image: url('backgrounds/static/construction.jpg');
    background-repeat: repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

.construction-box {
    background-color: white;
    width: 400px;
    border: 15px solid black;
    border-radius: 20px;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-row {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 20px;
}

.icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.construction-box h1 {
    margin: 0 0 20px 0;
    font-size: 32px;
}

.construction-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

.wizard-section {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.wizard-link {
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
}

.wizard-link img {
    transition: transform 0.2s;
}

.wizard-link:hover img {
    transform: scale(1.1);
}

.wizard-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.wizard-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}