body {
    /*height: 100vh;*/
    width: 100%;
    background-image: url(bgimg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
* {
    padding: 0;
    margin: 0;
    font-family: 'LT Internet', sans-serif;
    box-sizing: border-box;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 45px;
    padding-left: 8%;
    padding-right: 8%;
    position: fixed;
    background-color: rgba(27, 25, 25, 0.822);
    width: 100%;
    z-index: 50;
}
.logo {
    color: white;
    font-size: 50px;
    letter-spacing: 1px;
    /*cursor: pointer;*/
}
span {
    color: gold;
}
nav ul li{
    list-style-type: none;
    display: inline-block;
    padding: 10px 25px;
}
nav ul li a{
    color: white;
    text-decoration: none;
    font-weight: bold;
    opacity: 1.0;
    transition: .3s;
}
nav ul li a:hover{
    color: rgb(245, 87, 87);
    transition: .4s;
}
.project #trailer{
    text-align: center;
}
.project {
    position: absolute;
    top: 120%;
    left: 8%;
    float: left;
    transform: translateY(-50%);
    padding-right: 200px;
    padding-left: 200px;
    padding-bottom: 100px;
    transition: .3s;
}
.project p{
    color: white;
    font-size: 20px;
    z-index: 10;
}
.project .ss img{
    transition: .05s;
}
.project .ss img:hover{
    border: 5px solid #fff;
    border-radius: 3px;
    cursor: pointer;
    transform: scale(1.5);
    transition: .5s;
}
h1 {
    color: white;
    margin: 20px 0px 20px;
    font-size: 60px;
}
h3 {
    color: gold;
    font-size: 25px;
    font-weight: bold;
}
h4 {
    color: rgb(247, 202, 202);
    letter-spacing: 2px;
    font-size: 40px;
    font-style: italic;
}
h3 .link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}
h3 .link:hover{
    color: rgb(245, 87, 87);
    transition: .4s;
}
h2 {
    color: white;
}

@media only screen and (max-width:700px){
    nav h2 {
        color: white;
        position: absolute;
        top: 15%;
        left: 5%;
    }
    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 45px;
        padding-left: 8%;
        padding-right: 8%;
        position: fixed;
        background-color: rgba(27, 25, 25, 0.822);
        width: 100%;
        height: 150px;
        z-index: 50;
    }
    nav ul{
        width: 100%;
        position: absolute;
        top: 75px;
        right: 0;
        z-index: 2;
    }
    nav ul li{
        display: inline-flex;
    }
    .project{
        width: 500px;
        position: relative;
        top: 1050px;
        left: 8%;        
        overflow: visible;
        padding-left: 0px;
    }
    .project .ss img{
        width: 100%;
    }
    .project .iframe-container iframe{
        position: relative;
        width: 400px;
        height: 250px;
    }
    .project #trailer {
        text-align: left;
    }
}