* {
    padding:0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --xlrg-font: 6rem;
    --lrg-font: 3rem;
    --med-font: 1.50rem;
    --small-font: 1.25rem;
}

html {
  scroll-behavior: smooth;
}

.company-name{
    font-size: var(--xlrg-font);
}

.header-text {
    font-size:var(--med-font);
}

.btns {
    padding: 10px 25px;
    border:none;
    outline: none;
    border-radius:20px;
    font-size:var(--small-font);
}

.btns:hover {
    cursor: pointer;
}

.img-overlay {
    position:absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom:0;
    z-index:2;
    background-color: rgba(0,0,0, 0.6);
    /* background-color: rgb(241, 240, 240); */
}
.four-imgs {
    display:flex;
    width: 80vw;
    justify-content: space-evenly;
    margin: 0 auto;
}
.four-imgs div img {
    max-width:250px;
}