/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styles */
header {
    position: relative;
}

.banner img {
    width: 100%;
    height: auto;
}

.floating-character {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.description {
    text-align: center;
    margin-top: 20px;
}

.links {
    text-align: center;
    margin-top: 20px;
}

.links ul {
    list-style-type: none;
}

.links li {
    margin-bottom: 10px;
}

.links li a {
    display: block;
    padding: 10px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
}

.centered-text {
    text-align: center;
    margin-top: 20px;
}

.border {
    border: 2px solid #333;
    padding: 20px;
}
