@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600&display=swap');

body, html {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    width: 100vw;
    height: 100vh;
    background: rgb(25, 26, 30);
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
}

h1 {
    margin: 0;
    padding: 0;
    color: #fff;
    font-weight: 200;
    font-size: 40px;
    letter-spacing: 3px;
    animation: fadeIn 1s ease-in-out;
    transition: color 0.2s ease-in-out;
}

h1:hover {
    cursor: default;
    color: #2F80ED;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: scale(1);
        transform: translateY(0px);
    }
}