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;
}
.content {
    position: absolute;
    top: 50%;
    left: 12%;
    float: left;
    transform: translateY(-50%);
    padding-right: 100px;
    padding-left: 100px;
    padding-top: 100px;
}
.content span {
    color: gold;
    width: 250px;
    height: 300px;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 80px;
    display: inline-block;
    text-align: center;
}
.content span .ss{
    text-align: center;
    margin-bottom: 25px;
}
.content p{
    color: white;
}
.content span .ss img{
    transition: .3s;
}
.content span .ss img:hover{
    transform: scale(110%);
    transition: .3s;
}
h1 {
    color: white;
    margin: 20px 0px 20px;
    font-size: 60px;
}
h3 {
    color: white;
    font-size: 25px;
    margin-bottom: 50px;
    font-style: italic;
}
h4 {
    color: rgb(247, 202, 202);
    letter-spacing: 2px;
    font-size: 40px;
    font-style: italic;
}
h2 {
    color: gold;
}
@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;
    }
    .content{
        width: 300px;
        height: 500px;
        position: relative;
        top: 250px;    
        left: 15%;
        padding-bottom: 50px;
        overflow: visible;
        padding-left: 0px;
    }
    .content span{
        padding-top: 0px;
        height: 10px;
    }
    .content span .ss{
        text-align: center;
        margin-bottom: 0px;
    }
}