* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

img {
    width: 100%;
    max-width: 1000px;
}

.header {
    padding: 10px 0;
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-button {
    outline: 0;
    grid-gap: 8px;
    align-items: center;
    background-color: #c12333;
    color: #ffea00;
    border: 1px solid #000;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 800;
    gap: 8px;
    justify-content: center;
    line-height: 1.5;
    overflow: hidden;
    padding: 20px 30px;
    text-decoration: none;
    text-overflow: ellipsis;
    transition: all .14s ease-out;
    white-space: nowrap;
}

.register-button:hover {
    box-shadow: 4px 4px 0 #000;
    transform: translate(-4px, -4px);
}

.register-button:focus-visible {
    outline-offset: 1px;
}

.register-button:active {
    box-shadow: -2px -2px 0 #000;
    transform: translate(0px, 0px);
}