* {
    margin: 0;
    padding: 0;
}

body {
    background: #080808;
    color: white;
}

.headder {
    width: 100%;
    height: 100vh;
    background: url(images/BG.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.container {
    padding: 10px 10%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 201px;
}

.logo {
    width: 200px;
    padding-top: 20px;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 5px 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 28px;
    font-family: 'Courier New', Courier, monospace;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0%;
    height: 5px;
    background: red;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: 0.5s;
}

nav ul li a:hover::after {
    width: 100%;
}

.coder {
    padding-top: 100px;
    font-size: 25px;
    margin-left: 8%;
}

.coder h1 span {
    color: red;
}

.footer {
    background: #080808;
    width: 100%;
    height: 360px;
    display: inline-flex;
}

.right {
    height: 360px;
    width: 640px;
    border: 2px solid black;
    align-items: center;
    justify-content: center;
    text-align: center;
    justify-items: center;
    padding: 30px;
    padding-top: 60px;
}

.middle {
    height: 360px;
    width: 640px;
    border: 2px solid red;
    align-items: center;
    justify-content: center;
    text-align: center;
    justify-items: center;
    margin: 30px;
}

.left {
    height: 360px;
    width: 640px;
    border: 2px solid black;
    padding: 20px;
    align-items: center;
    text-align: center;
}

.bottom {
    width: 99%;
    height: 144px;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-top: 20px;
    border: 2px solid black;
    justify-items: middle;
}

.middle ul li a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-family: 'Courier New', Courier, monospace;
}

.middle ul li {
    list-style: none;
    padding: 10px;
    margin-top: 40;
}

.btmlogo {
    margin: 10px;
}

.bottom p {
    padding-top: 54px;
}

.bottom span {
    color: red;
}

.left h3{
    padding: 20px;
    padding-top:20px;

}

.left h4{
    padding: 20px;
    padding-top: 26px;
    
}

.left h2{
    color: red;
    
}

.left h3 span{
    color: red;
}

.container nav ul li span{
    color: red;
}