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

html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    font-family: 'Courier New', Courier, monospace;
}

body {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.logo {
    transition: width 0.17s linear;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    min-width: 320px;
    width: 50vw
}

.logo img {
    width: 100%;
    height: auto
}

svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh
}

.logo-text {
    text-align: center;
    color: white;
    font-size: 16px;
    margin: 16px 0;
    font-weight: 600;
    line-height: 1.25;
}

@media screen and (min-width: 1600px) {
    .logo-text {
        font-size: 24px
    }
}

a,
a:visited,
a:active {
    color: white;
}

a:hover {
    color: black;
    transition: all 0.5s;
}

/*fee440*/