@import url('https://fonts.googleapis.com/css?family=Montserrat:500');

::-webkit-scrollbar {
    width: 15px;
    background: rgb(36, 36, 36);
    opacity: 50%;
    
}

::-webkit-scrollbar-thumb {
    background: #3d3d3d;
    border-radius: 24px;
    transition: 200ms;
}

* {
    margin: 0;
}

html {
    font-family: "Montserrat", sans-serif;
    color: rgba(255, 255, 255, 0.95);
    background-color: black;
}

html, body {
    margin: 0;
    padding: 0;
}

img {
    pointer-events: none;
    -webkit-user-drag: none;
}

a {
    text-decoration: none;
}

.Welcome {
    display: flex;
    flex-direction: column;
	margin: 0 auto;
    text-align: center;
    gap: 2em;
    padding-top: 8em;

    > p {
        color: rgba(255, 255, 255, 0.7);
        margin: 0 auto;
    }

    > h1 {
        font-size: 3.5em;
        margin: 0;
    }
}

.Preview {
    display: block;
    flex-direction: column;
    text-align: center;
    margin-top: 3em;
    margin-bottom: 3em;
    max-width: calc(100% - 2em);
    margin: 3em auto 3em auto;

    > img {
        width: 60%;
        border-radius: 12px;
        -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 92%);
        mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 92%);
    }
}

.Centre {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Buttons {
    display: flex;
    margin: 0 auto;
    padding-top: 0.4em;
    gap: 0.8em;
}

.button {
    background-color: rgba(3, 3, 3, 0.827);
    color: rgba(255, 255, 255, 0.705);
    border-radius: 1em;
    padding: 0 0.7em;
	width: fit-content;
	height: 3em;
    align-items: center;
    display: flex;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    gap: 0.5em;
    box-sizing: border-box;
    
    transition: background-color 0.4s ease, color 0.4s ease;

    > img {
        height: 50%;
    }
}

.button:hover {
    background-color: rgba(32, 32, 32, 0.9);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.171);
}