* { margin: 0; }

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    overflow: hidden;

    user-select: none;
    touch-action: none;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: emoji-font;
    src: url(assets/NotoCrocSweat.woff2);
}

.croc {
    font-family: emoji-font, 'Noto Color Emoji', sans-serif;
    font-size: min(40vw, 40vh);
    text-align: center;

    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;

    text-shadow: -0.60vh -0.60vh 0 #fff, 0.60vh -0.60vh 0 #fff, -0.60vh 0.60vh 0 #fff, 0.60vh 0.60vh 0 #fff;
}

.sites {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2vh;

    font-size: 5vh;
}

.sites a { color: #118CD9; }
.sites a:hover { color: #0C6399; }
.sites a:active { color: #073A59; }

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    height: 100vh;
    gap: 5vh;
}
