 body {
    margin: 0;
    }
    .splash {
    position: relative;
    margin: 0;
    padding: 0;
    background: #e4bc58;
    }

    .logo {
    font-size: 30px;
    color: #2557c7;
    font-weight: bold;
    font-family: "Pacifico", cursive;
    position: absolute;
    left: 20px;
    }
    .navbar {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    }
    .navbar .hamburger {
    font-size: 30px;
    color: white;
    cursor: pointer;
    }
    .container {
    display: flex;
    height: 100vh;
    }
    .text-section {
    margin-top: 50px;
    margin-left: 100px;
    align-items: center;
    justify-content: center;
    color: #2557c7;
    padding: 20px;
    font-family: sans-serif;
    width: 500px;
    }
    .text-section h1 {
    font-size: 80px;
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
    line-height: 80px;
    }
    .text-section p {
    font-size: 25px;
    color: #29488f;
    font-weight: bold;
    font-weight: 300;
    margin-top: 20px;
    }
    .image-section {
    flex: 1;
    }
    .text-section img {
    animation: bounce 2s infinite ease-in-out;
    }
    .furniture {
    opacity: 0.9;
    }
    @keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
    }