@import"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap";

* {
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --main: rgb(189, 28, 17);
    --bg1: rgb(5, 3, 3);
    --bg2: rgb(15, 15, 15);
    --bg3: rgb(23, 23, 23);
    --bg4: rgb(28, 28, 28);
    --bg5: rgb(50, 50, 50);
    --bgtransparent: rgba(14, 9, 9, 0.95);
    --font1: #f1eae9;
    --font2: #cac1c0;
    --font3: #aaa1a1;
    --font4: #888181;
    --font5: #635d5d;
}

body {
    user-select: none;
    color: var(--font1);
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 0.2vw;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--bg4);
    border-radius: 1vw;
}


body {
    background-color: black;
}

.info {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.info .title {
    font-size: 5vw;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0px 0px 30px #e40fd9;
    color: #e40fd9;
}

.info p {
    font-size: 1.1vw;
    font-weight: 700;
    color: var(--font3);
    text-shadow: 0px 0px 20px var(--font3);
}

.info .author {
    margin-top: 2vw;
    font-size: 1.2vw;
    font-weight: 800;
    text-shadow: 0px 0px 30px #e40fd9;
    color: #e40fd9;
}