@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

nav
{
    width: 100%;
    height: 75px;
    line-height: 75px;
    padding: 50px;
    background: rgba(0,0,0,.2);
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    position: fixed;
    top: 0;
}

#logo1
{
    width: 25px;
    height: 65px;
    position: fixed;
    float: left;
    top: 18;
    margin-left: 0px;
}

#logo1 img
{
    width: 260%;
    height: auto;
}

.dropdown
{
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: white;
    overflow-y: hidden;
    transition: 0.5s;
}

.dropdown-lists
{
    position: relative;
    top: 23%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.dropdown a
{
    padding: 8px;
    text-decoration: none;
    font-size: 40px;
    color: #002626;
    display: block;
    transition: 0.3s;
    margin: 25px;
}

.dropdown a:hover, .dropdown a:focus
{
    color: gray;
}

.hamburger
{
    color: white;
    position: fixed;
    right: 48px;
    top: 15px;
    font-size: 50px;
    cursor: pointer;
}

.dropdown .buttonX
{
    position: absolute;
    top: -38px;
    right: 12px;
    font-size: 90px;
    color: #002626;
}

span
{
    color: #4c2d80;
}

h1
{
    font-size: 100px;
    font-weight: 600;
    margin: 0;
}

.content
{
    padding: 100px;
    font-size: 15px;
}

header 
{
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6))
    ,url(image/iltramontodellaluna.png);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    text-align: center;
    color: #fff;
}

header p
{
    color: #fff;
    font-size: 15px;
    font-weight: 550;
}

.content
{
    padding: 100px;
    font-size: 15px;
}

.content p
{
    color: #2e3133;
    margin-left: 10%;
    margin-right: 10%;
    font-size: 15px;
}

@media only screen and (max-width: 996px){
    
    h1
{
    font-size: 68px;
    font-weight: 600;
    margin: 0;
}
    .content p
{
    color: #2e3133;
    margin-left: 0px;
    margin-right: 0px;
    font-size: 15px;
}
    .content
{
    padding: 50px;
    font-size: 15px;
}
    
}











::-webkit-scrollbar
{
    display: none;
}