*{
    margin: 0;
    padding: 0;
    
}

header {
    background-image: url(../img/bg.svg);
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.title {
    position: absolute;
    top: 35%;
    left: 5%;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    
}

.title h1 {
    font-size: 70px;
    color: lightslategray;
}

.title h4{
    margin-bottom: -10px;
    font-size: 16px;
}

.title p {
    margin-top : -10px;
    text-decoration: none;
    font-size: 15px;
}

.main li::after {
    content:'';
    display: block;
    width: 0;
    height: 2px;
    background: black;
    transition: width .3s;
}

.main li:hover::after {
    width: 100%;
    transition: width .3s; 
}


@media only screen and (max-width:700px){
body {
    overflow-x: hidden;

}
    header {
    text-align: center;
    width: 100%;
    background-image: url(../img/bg-mobile.png);
    background-size:  100%;
    background-repeat: no-repeat;
    background-position: top;
    background-position-y: 100px;
    height: 70vh
}

.title {
    margin-right: 10%;
    margin-left: 10%;
}

header .title {
    margin-top: 120px;
    align-items: center;
}

header a {
    display: none;
}

header .title h1 {
    font-size: 50px;
}
header .title p {
    font-size: 10px;
}

.media iframe {
    border: black 1px solid;
    width: 300px;
    height: 200px;
}

}

/* END HEADER */


.content {
    width: 100%;
    color: lightslategray;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.text {
    margin: 50px;
    font-size: 20px;
    text-align: center;
}

.media {
    text-align: center;
}

.footer {
    background-color:#484848;
}
.footer-bottom {
    color: whitesmoke;
    height: 50px;
    text-align: center;  
}

.footer-content {
    margin-top: 10px;
}

.footer-bottom p {
font-size: 16px;
margin-bottom: 10px;
padding-top: 10px;
}
