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

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    position: relative;
    background: conic-gradient(from 90deg at 50% 50%, #001cf5, #4874f7, #001cf5);
}

#base-message {
    font-size: 3vw;
    max-width: 90%;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    position: relative;
}

#link-container {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

#bottom-link {
    color: white;
    text-decoration: none;
    font-size: 1.5vw;
}
@media (max-width: 768px) {
    #bottom-link {
        font-size: 3vw;
    }
}
