﻿@font-face {
    font-family: 'Tex2';
    src: url('../assets/fonts/ComicSansMS.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Tex3';
    src: url('../assets/fonts/ShagLounge.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Tex1';
    src: url('../assets/fonts/TahomaRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Tex4';
    src: url('../assets/fonts/WarbandStencil.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.site {

}

body {
    margin: 0;
    font-family: 'Tex1', Tahoma;
    font-weight: normal;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: black;
}

    header::after {
        content: '';
        display: table;
        clear: both;
    }

.logo {
    float: left;
    padding: 3px 0;
}

.special-text {
    width: 100%;
    font-family: 'Tex2';
    padding: 0px 0px;
    font-style: oblique;
    text-align: right;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}
    .special-text p {
        display: inline-block;
        padding-left: 100%;
        animation: scroll-left 9s linear infinite;
    }
@keyframes scroll-left {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }

    0% {
        color: green;
    }

    50% {
        color: blue;
    }

    100% {
        color: purple;
    }
}

.n-text {
    font-family: 'Tex1';
    text-decoration: none;
}

main {
    text-align: center;
    font-family: 'Tex1';
    font-style: normal;
}

.side-text {
    font-family: 'Tex3';
    text-align: center;
    font-style: normal;
}

nav {
    float: right;
}

    nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

nav li {
    display: inline-block;
    margin-left: 20px;
    padding-top: 25px;
}

    nav a {
        color: black;
        text-decoration: none;
        text-transform: uppercase;
        font-family: 'Tex2';
        font-style: normal;
    }

        nav a:hover {
            color:blue;
        }