* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, sans-serif;
}
body {
    background: #ffffff;
    padding: 30px;
}
.title {
    font-size: 64px;
    font-weight: normal;
    margin-bottom: 10px;
}
@media (max-width:768px) {
    .title {
        font-size: 40px;
    }
}
.line {
    height: 5px;
    background-color: #000;
    margin-bottom: 40px;
}
.box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
@media (max-width:768px) {
    .box-container {
        gap: 20px;
        justify-content: center;
    }
}
.module-box {
    width: 220px;
    height: 120px;
    border: 6px solid #000;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
}
@media (max-width:768px) {
    .module-box {
        width: 180px;
        height: 100px;
        font-size: 18px;
    }
}
.module-box:hover {
    background-color: #eeeeee;
}
a {
    text-decoration: none;
    color: #000;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}