@import 'reset.css';
@import 'layout.css';
@import 'typography.css';
@import 'theme.css';
@import 'images.css';
@import 'media.css';


@media screen and (max-width <= 600px) {
    .temp {
        display: none;
    }
}
.bg-gray {
    background-color: lightgray;
}

.bg-blue {
    background-color:lightblue
}

body{
    position: relative !important;
    background: #ffffff;
    background: linear-gradient(158deg, rgba(255, 255, 255, 1) 0%,
                                        rgba(235, 235, 235, 1) 50%, 
                                        rgba(211, 218, 222, 1) 100%);
}

html {
    overflow-y: scroll !important;
    scroll-behavior: smooth !important;
}

#landing {
    position: relative;
    background-color: rgba(0,0,0,0);
}

#landing-mask {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    right: var(--content-padding);
    left: var(--content-padding);

    /* width: 100%; */
    height: 100%;
    border-radius: 10px;

    background-color: rgba(0,0,0,0);
    background-image: url('images/images/trace_pcb.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;

    mask: linear-gradient(to right,#0000 40%, #000);
}