body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #5aa55b;
}

h1 {
    color: #dafada;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 50px;
    margin-top: 20px;
    margin-bottom: 15px;
}

h2 {
    color: #dafada;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    margin-bottom: 5px;
}

p {
    color: #dafada;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 70%;
}

.character {
    display: flex;
    flex-direction: row;
    width: 100%;
    background: #54c556;
    border-radius: 10px;
    margin: 10px;
}

.characterText {
    display: flex;
    flex-direction: column;
    width: 75%;
    text-align: left;
    margin-left: 20px;
}

.character img {
    width: 25%;
    height: auto;
    margin: 10px;
    object-fit: cover;
    border-radius: 10px;
}

.character a {
    color: #00ff00;
    text-decoration: underline;
}

.linkBox {
    background-color: #54c556;
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: 10px;
    margin: 10px;
    width: 30%;
    align-items: center;
}

.linkBox:hover {
    background-color: #4bb54b;
    cursor: pointer;
}

.linkBox span {
    font-size: 18px;
    color: #dafada;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

@media (max-width: 768px)  {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 25px;
    }

    p {
        font-size: 18px;
    }

    .container {
        width: 85%;
    }

    .character {
        flex-direction: column;
        align-items: center;
    }

    .characterText {
        text-align: center;
        width: 90%;
        margin-left: 0;
    }

    .character img {
        width: 50%;
        height: auto;
        margin: 10px;
    }
}