@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400&display=swap');

body {
    background: url("../images/naslovna_splet.png") no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
}

.header {
    position: relative;
    top: 14rem;
    text-align: center;
}

.logo {
    margin-bottom:50px;
}

.logo img {
    margin:auto;
    display: flex;
    width: 35rem;
}

.logo h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    color: #68c171;
}

.header button {
    height:200px;
}

/* Button base */
.btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;

    touch-action: manipulation;
    user-select: none;

    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
    border: 0;

    /* transition: all 250ms ease-in-out; */

    text-transform: uppercase;
    letter-spacing: 4px;

    margin-right: 20px;
}
.btn--gradient {
        /* transition: all 500ms ease-in-out; */
        font-size: 24px;

        color: #fff;
        box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        background: linear-gradient(54.7deg,  #68c171 12%,#387e3f 100%);
    }
.btn--gradient:hover,
        .btn--gradient:active {
            color: #fff;
            box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
        }
.btn--gradient:before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            left: 0;

            opacity: 0;
            
            transition: all 500ms ease-in-out;
            background: linear-gradient(54.7deg, #387e3f 12%,#68c171 100%);
        }
.btn--gradient:hover:before {
                opacity: 1;
                color: #fff;
            }
.btn--xlrg {
        height: 68px;
        line-height: 68px;
        padding: 0 24px;
    }
.btn__text {
	z-index: 2;
	position: relative;
	font-family: 'Quicksand', sans-serif;
    font-weight: 300;
}

@media only screen and (max-width: 600px) {
  .btn {
	  margin-bottom: 30px;
	  white-space: break-spaces;
  }
  .btn--xlrg {
        line-height: unset;
    }
	.btn__text {
		display: inline-flex;
		align-items: center;
		height: 68px;
	}
	.logo img {
		width: 25rem;
	}
}