@font-face {
    font-family:"slice-serif";
    src: url('./font/redo-regular.woff') format("woff");
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: rgb(203, 203, 203);
    background-image: url('./photo/mosaic.png');
    
    margin: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.font-name {
    font-family: "slice-serif";
    color: rgb(203, 53, 53);
    font-size: 200px;
    text-align: center;
    margin-bottom: 40px;
}

.font-name:hover {
    color: rgb(134, 9, 9);
    cursor: pointer;
    transition: 0.3s ease;
}


.image-container {
    position: relative;
    width: 500px;
    margin: 0 auto 60px;
}

.image-container img {
    width: 100%;
}

.description {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: lighter;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-align: center;
}

.image-container:hover .description {
    display: block;
}

.font-speciman {
    font-family: "slice-serif";
    color: rgb(203, 53, 53);
    font-size: 80px;
    word-break: break-word;
    max-width: 100%;
    text-align: center;
    line-height: 1.2;
    margin: 20px 0;
}

section {
    max-width: 800px;
    margin: 20px;
    padding: 20px;
}

section h2 {
    font-family: "slice-serif";
    color: rgb(203, 53, 53);
    font-size: 48px;
    margin-bottom: 20px;
    text-align: left;
}

section p, section ul {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.mockup-image {
    width: 100%;
    margin-top: 20px;
    border-radius: 8px;
}
