* {
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body {
    margin: 0;
    background: #222;
    font-family: 'Verdana';
    font-weight: 400;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background: #370606;
}

    header::after {
        content: '';
        display: table;
        clear: both;
    }

.logo {
    float: left;
}

nav {
    float: inherit;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    nav li {
        display: inline-block;
        margin-left: 150px;
        padding-top: 38px;
        
        position: relative;
    }

    nav a {
        color: #FFFFFF;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 20px;
    }
navidown a {
    color: white;
        text-decoration: none;
        text-transform: none;
        font-size: 20px;
}
@media screen and (max-width: 465px) {
    navidown a {
        color: white;
            text-decoration: none;
            text-transform: none;
            font-size: 10px;
    }
  }
@media screen and (max-width: 615px) {
    navidown a {
        color: white;
            text-decoration: none;
            text-transform: none;
            font-size: 15px;
    }
  }

    /* T2 */
.link {
    position: relative;
    padding-bottom: 8px;
    cursor: pointer;
}

    .link::after {
        position: absolute;
        bottom: 0;
        left: 0;
        content : "";
        width:0%;
        height: 2px;
        background-color: #FFFFFF;
        transition: width 0.4s ease-out;
    }
    .link:hover.link::after {
        width: 100%;
    }

    .header {
  padding: 30px;
  text-align: center;
  background: #FFFFFF;
  color: #370617;
  font-size: 30px;
}