

body {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    color: #333;
}
h1 {
    color: #2a7f62;
    margin-bottom: 30px;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.link-box {
    width: 80%;
    padding: 15px;
    border: 2px solid #2a7f62;
    border-radius: 10px;
    background-color: white;
    color: #2a7f62;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}
.link-box:hover {
    background-color: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
}
.link-box i {
    font-size: 24px;
}
.link-box span {
    font-family: 'Klee One', cursive;
    font-size: 24px;
}

