body {
    background: #aad8db;
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hidden {
    display: none;
}

.gadget {
    width: 350px;
    max-width: 90vw;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.antenna {
    border: 4px solid #333533;
    border-bottom: none;
    width: 20px;
    height: 70px;
    margin-bottom: -7px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background: #6F5D4B;
    box-shadow: inset -9px 0px #625142;
    position: relative;
    align-self: flex-start;
    margin-left: 33px;
}

.signal {
    position: absolute;
    top: -20px;
    left: 0;
    width: 10px;
    height: 5px;
    background: #333533;
    animation-name: kblink;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.signal:nth-child(2) {
    top: -35px;
    width: 20px;
    animation-delay: 0.5s;
}

@keyframes kblink {
    50% {
        opacity: 0;
    }
}

.head {
    width: 140px;
    height: 30px;
    border: 5px solid #333533;
    border-bottom: none;
    border-radius: 80px 80px 0px 0px / 35px 35px 30px 30px;
    margin-bottom: -15px;
    background: #6F5D4B;
    box-sizing: border-box;
    box-shadow: inset -13px 0px #625142;
    align-self: flex-start;
    margin-left: 10px;
}

.body {
    width: 350px;
    height: 350px;
    max-width: 90vw;
    max-height: 90vh;
    border: 5px solid #333533;
    border-radius: 30px 30px 10px 10px / 35px 35px 15px 15px;
    background: #FDCA6A;
    box-sizing: border-box;
    padding: 15px;
    box-shadow: inset -8px -7px #F8A242;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-top: 3px;

}

.display {
    border: 5px solid #333533;
    margin-top: 10px;
    border-radius: 15px 15px 30px 0;
    height: 150px;
    margin-top: -7px;
    max-height: 50%;
    width: 90%;
    padding: 10px;
    background: grey;
    font-family: "VT323";
    font-size: 22px;
    color: lightgrey;
    text-align: center;
    box-shadow: inset -3px 0px #737070;
    overflow-y: auto;
    white-space: pre-wrap;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button {
    border-radius: 5px;
    border: 4px solid #333533;
    margin-top: 20px;
    background: #DD3747;
    font-family: "Share Tech Mono";
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #333533;
    padding: 12px;
    cursor: pointer;
    width: 90%;
    max-width: 270px;
}

.legs {
    display: flex;
    justify-content: space-between;
    width: 280px;
    max-width: 80vw;
    margin-top: -1px;
}

.leg {
    border: 4px solid #333533;
    border-top: none;
    width: 50px;
    height: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #6F5D4B;
    box-shadow: inset -9px 0px #625142;
}

.hidden {
    display: none;
}