*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}
main{
    width: 60%;
    margin: auto;
    margin-top: 2em;
}
body{
    background-color: #292b36;
}
a{
    text-decoration: none;
}
p{
    color: #c3c5d1;
    font-family: Poppins;
}
h1{
    color: #80849e;
    font-family: Montserrat;
}
h2{
    font-family: Tondu;
    color: #b3b5c5;
}
#packs{
    margin-bottom: 20px;
}
#packs button{
    margin-top: 20px;
}
#Introduction-container{
    flex-wrap: wrap;
    text-align: left;
}
#Introduction-container > div{
    margin-top: 10px;
}
#Introduction-container > div > h1{
    margin-bottom: 10px;
}
#Introduction-container > div > h2{
    margin-bottom: 10px;
}
#highlight{
    transition: 0.3s all;
}
#highlight:hover{
    color: #95a7bd
}
#tutorial-container > div{
    margin-bottom: 20px;
}
.tutorial-content{
    background-image: url(../Media/Davinci\ Logo_4x.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100px;
    align-items: center;
    display: flex;
    justify-content: center;
    box-shadow: 0 0 10px;
}
.tutorial-content a{
    color: white;
    font-size: 32px;
    transition: 0.5s all;
}
.tutorial-content a:hover{
    color: #577590;
    font-size: 48px;
}
.black{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    background-color: black;
    padding: 20px;
    width: 60%;
    box-shadow: 0 0 10px black;
}
footer{
    background-color: #131619;
    width: 100%;
    padding: 20px;
    position:initial;
    bottom: 0;
}
#last{
    margin-bottom: 25px;
}
.footer-container{
    width: 70%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    /* align-items: center; This will vertically align items in the *center* */
    align-items: stretch; /* This will make the divs stretch to the tallest one */
    text-align: center;
}
.footer-container p{
    font-size: 20px;
}
.footer-container > div > ul > li{
    font-family: Poppins;
    list-style: none;
    text-align: left;
}
.footer-heading{
    text-align: left;
}
.footer-container > div > ul > li > a{
    color: #627181;
    transition: 0.5s all;
}
.footer-container > div > ul > li > a:hover{
    color: #8896a5;
}
.footer-bottom{
    width: 70%;
    margin: auto;
    margin-top: 15px;
    text-align: center;
    border-top: 1px solid #697a8b;
    padding-top: 15px;
}
video{
    margin-top: 10px;
    margin-bottom: 10px;
    width: 300px;
    height: auto;
    border-radius: 20px;
    border: 1px black solid;
    box-shadow: 0px 0px 5px;
}
.link{
    color: #8896a5;
}
@media (max-width: 768px){
    main{
        width: 95%;
    }
    .footer-container{
        width: 100%;
    }
    .footer-bottom{
        width: 95%;
    }
}
@media (max-width: 550px){
    .footer-container{
        flex-direction: column;
    }
    .footer-container p{
        font-size: 16px;
    }
    .footer-container div{
        margin-top: 20px;
    }
    .footer-container div:first-child{
        margin-top: 0px;
    }
}
@media (max-width: 350px){
    #name{
        display: none;
    }
}