/* ========================================
   GLOBAL STYLES & RESETS
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Recursive', sans-serif;
    overflow-x: hidden;
}

main {
    position: relative;
    padding-bottom: 150px;
}

.container {
    position: relative;
    max-height: none;
    width: 100%;
    background-color: #bbb6d4;
    /* background-image: linear-gradient(135deg, #eeaeca 0%, #94bbe9 100%); */
    background-image: radial-gradient(circle,rgba(110, 53, 76, 1) 0%, rgba(148, 187, 233, 1) 100%);
    transform-style: preserve-3d;
    overflow: visible;
}

.main-container {
    overflow: visible;
    transform: none;
}

.main {
    position: relative;
    width: 100%;
    left: 0;
    z-index: 5;
    overflow: visible;
    transform-origin: left;
    transform-style: preserve-3d;
    transition: 0.5s;
}
