/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styling */
body {
    background-color: black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: white;
}

ul {
    list-style-type: none;
}

.blink {
    animation: 1s blinker linear infinite;
    -webkit-animation: 1s blinker linear infinite;
    -moz-animation: 1s blinker linear infinite;
    color: red;
}

@-moz-keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

/* Utilities */
.left-button {
    width: 88px;
    height: 31px;
}

.welcome-box {
    max-inline-size: 100%;
}


/* Header */
.welcome-title {
    display: inline-block;
    font-size: 2rem;
    color: white;
}

.start-image {
    text-align: center;
}

/* Left Side */
.guestbook {
    display: block;
    margin: 0 auto;
}

.buttons {
    font-size: 0;
    text-align: center;
}

/* Right Side */
.more-stuff {
    display: flex;
    justify-content: space-around;
}

.melonland {
    display: flex;
    justify-content: center;
}

/* Footer */
footer {
    background-color: rgba(255, 0, 0, 0.2);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.footer-img {
    width: 128px;
    height: 32px;
}

.wall-text {
    background-color: lightblue;
    color: black;
    width: 350px;
    border-radius: 10px;
    text-align: center;
}