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

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

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background-color: #000;
    overflow: auto;
}

.logo-link {
    position: absolute;
    top: -5px;
    left: 20px;
    z-index: 5;
}

.logo {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5));
}

.background-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('../img/layer-1.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

.sakura {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('../img/layer-5.png') no-repeat center/cover;
    transform: scale(1.2);
    z-index: 1;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@media (pointer: coarse) {
  .background-container {
    background-attachment: scroll;
  }
	.sakura {
		background-attachment: scroll;
	}
}