* {
    margin: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.25;
    -webkit-text-size-adjust: 100%; /* Prevents Safari from auto-resizing text. */
    background-color: green;
    color: yellow;
    height: 100%;
    overflow-y: hidden;
}

#wrapper {
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    padding: 10px;
    align-items: center;
}