@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&display=swap');

body {
    background: #2a2a2a;
    overflow-x: hidden;
}

.header {
    background: rgba(0, 0, 0, 0.6) url('https://cdn.discordapp.com/attachments/744350458910605433/1076071605182144583/wOYwWTPvKA7bgAAAABJRU5ErkJggg.png') no-repeat center;
    background-blend-mode: multiply;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    margin: auto auto;
    position: absolute;
}

.whymonke {
    background: rgba(0, 0, 0, 0.6) url('https://cdn.discordapp.com/attachments/744350458910605433/1076099590794780713/image-2.png') no-repeat center;
    background-blend-mode: multiply;
    background-size: cover;
}

.stories {
    background: rgba(0, 0, 0, 0.6) url('https://cdn.discordapp.com/attachments/744350458910605433/1076105098217930802/image.png') no-repeat center;
    background-blend-mode: multiply;
    background-size: cover;
}

.final {
    padding-bottom: 0 !important;
}

.product-list {
    padding-left: 15%;
    padding-right: 15%;
    display: flex;
    flex-wrap: wrap;
    margin: auto auto;
}

.screen-block {
    height: 100vh;
    position: relative;
}

.content {
    margin: auto auto;
    padding: 150px 50px;
}

.content * {
    color: white;
    text-align: center;
}

.header .content {
    margin: 150px 0;
    padding: 0 0;
    width: 100vw;
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-75%);
}

.header .content .title {
    font-size: 100px;
}

.inline-container {
    display: flex;
    flex-wrap: wrap;
    margin: auto auto;
}

.container-block {
    width: 80%;
    margin: auto auto;
}

.inline-container .item {
    margin: auto auto;
    margin-top: 0 !important;
}

.inline-icon {
    width: 100px;
    float: left;
    transform: translateY(-25%);
    margin: 20px;
}

.block {
    padding: 40px 0;
}

nav {
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.034),
    0 7px 5px rgba(0, 0, 0, 0.048),
    0 13px 10px rgba(0, 0, 0, 0.06),
    0 22px 18px rgba(0, 0, 0, 0.072),
    0 42px 33px rgba(0, 0, 0, 0.086),
    0 100px 80px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(60px);
    overflow: hidden;
    border-radius: 10px;
    padding: 0 0;
    margin: 20px;
}

nav a {
    color: #dad9d9;
    position: relative;
    margin: 0 0;
    padding: 20px;
    font-size: 20px;
    display: block;
    text-align: center;
    text-decoration: none;
}

nav .title {
    float: left;
    background-color: rgba(99, 98, 95, 0.2);
}

nav .link {
    float: right;
}

nav .link:hover {
    background: rgba(99, 98, 95, 0.2);
    cursor: pointer;
    transition: 0.2s;
}

body {
    padding: 0;
    margin: 0;
}

.photos * {
    width: 27vw;
}

.photo-grid {
    padding-top: 100px;
}

button {
    display: block;
    background-color: rgb(37, 99, 235);
    font-weight: bold;
    color: white;
    padding: 15px 100px;
    font-size: 1rem;
    border-radius: 0.5rem;
    transition: all .15s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    margin: 100px auto;
    box-shadow: 0 0 1px rgb(0, 0, 0, 0.03),
    0 0 1px rgb(0, 0, 0, 0.04),
    0 0 2px rgb(0, 0, 0, 0.04),
    0 0 4px rgb(0, 0, 0, 0.04),
    0 0 5px rgb(0, 0, 0, 0.05),
    0 0 8px rgb(0, 0, 0, 0.05),
    0 0 11px rgb(0, 0, 0, 0.05),
    0 0 17px rgb(0, 0, 0, 0.04),
    0 0 27px rgb(0, 0, 0, 0.04),
    0 0 100px rgb(0, 0, 0, 0.03);
}

button:hover {
    background-color: rgb(31, 90, 251);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.065),
    0 1px 3px rgba(0, 0, 0, 0.086),
    0 4px 8px rgba(0, 0, 0, 0.098),
    0 9px 16px rgba(0, 0, 0, 0.106),
    0 17px 28px rgba(0, 0, 0, 0.11),
    0 35px 55px rgba(0, 0, 0, 0.11);
}

.item img {
    margin-top: 10px;
    margin-bottom: -20px;
    width: 100%;
    border-radius: 10px;
}

* {
    font-family: 'Noto Sans', sans-serif;
}

::-webkit-scrollbar-track {
    background-color: #101010;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #101010;
}

::-webkit-scrollbar-thumb {
    background-color: #696969;
}

.slider {
    opacity: 0;
    position: relative;
    text-overflow: clip;
    animation: slide-up ease-out 0.7s forwards;
}

@keyframes slide-up {
    0% { transform: translateY(40px); }
    100% { transform: translateY(0px); opacity: 1; }
}

.slider:nth-child(1) { animation-delay: 0.5s }
.slider:nth-child(2) { animation-delay: 0.75s }

@media screen and (max-width: 700px) {
    .photos * {
        width: 40vw;
    }
}

@media screen and (min-width: 900px) {
    .inline-container .item {
        width: 40%;
    }

    .inline-container .item * {
        text-align: left;
    }
}

@media screen and (max-width: 1050px) {
    nav a:first-child {
        width: 100%;
        padding: 15px 0;
    }

    nav a:not(:first-child) {
        display: none;
    }
}