* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #FFFFFF;
}

body {
    width: 100%;
    background-color: #e09f07;
}

main {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    font-size: 14px;
}

div {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bg {
    width: 90%;
    z-index: 0;
    position: relative;
    top: 0;
    left: 5%;
    animation: rotation 30s infinite linear;

}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.nugget {
    max-width: 50%;
    width: 500px;
    z-index: 1;
    position: absolute;
    top: 35%;
    left: 50%;
    margin-top: -25%;
    margin-left: -25%;
}

.bottom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 2rem;
    text-align: center;
    text-decoration: none;
    margin: 0.5rem;
    outline: none;
}

.bottom {
    border-color: transparent;
    transition: background-color 0.3s ease-in-out;
}

.botthover:hover {
    background-color: #e67300;
}

.botthover:active {
    background-color: #e67300;
}
