@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Montserrat:wght@100..900&display=swap');

html, body, .container {
    height: 100%;

    margin: 0;
    padding: 0;
    overflow: hidden;
}
canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}
body {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin: 0;
    box-sizing: border-box;
    user-select: none;
    background: rgb(2,1,32);
    background: linear-gradient(180deg, rgba(2,1,32,1) 0%, rgba(45,8,106,1) 100%);
    overflow: hidden;
}
.audiowide {
    font-family: "Audiowide", serif;
    font-weight: 400;
    font-style: normal;
}

p {
    margin: 0;
}
.container {
    display: flex;
    justify-content: center;
}
.view {
    width: calc(100% - 80px);
    max-width: 1280px;
    height: calc(100% - 96px);
    padding: 48px 0px;
    position: relative;
}
p.bigtitle {
    font-family: "Audiowide", serif;
    font-weight: 400;
    font-size: 144px;
    margin-top: 32px;
    color: #E2E2E2;
    font-size: clamp(3rem, 10vw, 10rem);
}
.bottom p {
    /*font-size: clamp(1rem, 10vw, 4rem);*/
    font-size: 5vw;
}
.centred {
    text-align: center;
}
img.icon {
    width: 42px;
}

.middle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    width: 100%;
}
.middle .left, .middle .right {
    width: 250px;
    text-align: center;
}
.middle .right {
    margin-left: auto;
}
.middle .left p, .middle .right p {
    font-size: 24px;
    color: #E2E2E2;
    margin-bottom: 32px;
}
.middle .left button, .bottom-mobile .activebtn {
    border: none;
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    background: rgb(112, 23, 255);
    background: linear-gradient(0deg, rgba(112, 23, 255, 1) 0%, rgba(190, 40, 255, 1) 100%);
    font-family: "Audiowide", serif;
    font-size: 32px;
    color: #E2E2E2;
    line-height: 32px;
    cursor: pointer;
    transition: 0.2s;
    z-index: 1000;
    position: relative;
}
.middle .left button::before, .bottom-mobile .activebtn::before {
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #8800FF;
    transition: opacity 0.2s ease-in-out;
    z-index: -1000;
    border-radius: 12px;
}
.middle .left button:hover::before, .bottom-mobile .activebtn:hover::before {
    opacity: 1;
}
.middle .right div {
    display: flex;
    gap: 20px;
}
.middle .right div button, .bottom-mobile .btn {
    border: none;
    width: 100%;
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    background: #E8E2F2;
    z-index: 1000;
    position: relative;
    display: flex;
    justify-content: center;
}
.middle .right div button::before, .bottom-mobile .btn::before {
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(112, 23, 255, 1) 0%, rgba(190, 40, 255, 1) 100%);
    transition: opacity 0.2s ease-in-out;
    z-index: -1000;
    border-radius: 12px;
}
.middle .right div button:hover::before, .bottom-mobile .btn:hover::before {
    opacity: 1;
}
.middle .right div button svg path, .bottom-mobile .btn svg path {
    transition: 0.2s;
}
button svg path {
    fill: #020120;
}
.middle .right div button:hover svg path, .bottom-mobile .btn:hover svg path {
    fill: #E8E2F2;
}

.bottom {
    position: absolute;
    bottom: 48px;
    width: 100%;
    text-align: center;
    font-family: "Audiowide", serif;
    font-weight: 400;
    z-index: -1;
}

.bottom-mobile {
    position: absolute;
    bottom: 24px;
    width: calc(100% - 92px);
    text-align: center;
    font-family: "Audiowide", serif;
    padding: 20px 46px;
    background: rgba(58, 42, 100, 0.3);
    border-radius: 24px;
    border: 2px solid #483c61;
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
}
.bottom-mobile p {
    color: #E2E2E2;
    font-size: 16px;
    margin-bottom: 16px;
}
.bottom-mobile .activebtn {
    font-size: 20px;
    padding: 12px;
}
.bottom-mobile .btn {
    padding: 11px;
}
.bottom-mobile div {
    margin-top: 16px;
    display: flex;
    gap: 11px;
}

.image {
    float: left;
    width: calc(80% - 60px);
    position: fixed;
    max-width: 1000px;
    top: 15vh;
    min-width: 800px;
}
.image img {
    width: 100%;
}


@media (min-width: 768px) {
    #mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    #pc {
        display: none;
    }
    #mobile {
        display: block;
    }
    img.icon {
        width: 34px;
        height: 32px;
    }
    p.bigtitle {
        margin-top: 24px;
    }
    .view {
        width: calc(100% - 40px);
    }
    .image {
        float: left;
        height: 100vh;
        position: fixed;
        max-width: 1000px;
        min-width: 740px;
        top: 10vh;
        left: 50%;
        transform: translate(-63%);
    }
    .centred a, .bottom-mobile {
        z-index: 2;
    }
}

.bigtitle {
    text-shadow:
      0 0 5px rgba(255, 255, 255, 0.6),
      0 0 10px rgba(255, 255, 255, 0.4),
      0 0 15px rgba(255, 255, 255, 0.2),
      0 0 20px rgba(255, 255, 255, 0.1);
  }
  
  .anim {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
  }

  /* .bigtitle {
    text-shadow:
      0 0 5px rgba(158, 79, 255, 0.6),
      0 0 10px rgba(158, 79, 255, 0.4),
      0 0 15px rgba(158, 79, 255, 0.2),
      0 0 20px rgba(158, 79, 255, 0.1);
  }
  
  .anim {
    filter: drop-shadow(0 0 15px rgba(158, 79, 255, 0.6));
  } */