@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic+Coding&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Nanum+Gothic+Coding', sans-serif;
}
html {
    font-size: 10px;
    font-family: 'Nanum+Gothic+Coding', sans-serif;
}
a {
    text-decoration: none;
}
p{
    text-align: left;
    color: white;
    font-family: 'Nanum+Gothic+Coding', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.5rem;
    letter-spacing: .2rem;
}
.container{
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-title{
    font-size: 4rem;
    font-weight: 300;
    color: black;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2rem;
    text-align: center;
}
.section-title span{
    color: crimson;
}


/* Hello Section  */
#hello {
    background-image: url(./img/img102.jpg);
    background-size: cover;
    background-position: top center;
    position: relative;
    z-index: 1;
}
#hello::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: .3;
    z-index: -1;
}
#hello h1{
    display: block;
    width: fit-content;
    font-size: 5rem;
    position: relative;
    color: white;
}
#hello .cta{
    display: inline-block;
    padding: 10px 30px;
    color: white;
    background-color: transparent;
    border: 2px solid crimson;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: .1rem;
    margin-top: 30px;
    transition: .3s ease background-color;
}
#hello .cta:hover{
    color: white;
    background-color: crimson;
}
/* End Hello Section  */

/* Services Section */
#services .services{
    flex-direction: column;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
}
#services .service-top p{
    color: black;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 300;
}
#services .service-bottom{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
#services .service-item{
    display: flex;
    flex-basis: 80%;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    background-color: midnightblue;
    background-size: cover;
    margin: 20px 5%;
}
#services .service-item h2{
    font-size: 3rem;
    color: lightsteelblue;
    margin-bottom: 20px;
}
#services .service-item h3{
    font-size: 1.8rem;
    color: lightslategray;
    margin-top: 10px;
}
/* End Services Section */

/* Download Section  */
#download .download{
    flex-direction: column;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
}
#download .download-top p{
    color: black;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 300;
}
#download .download-item{
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    width: 80%;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    background-color: dimgray;
    background-size: cover;
    padding: 20px;
}
#download .download-item h2{
    font-size: 3rem;
    color: white;
}
#download .download-item img{
    width: auto;
    height: auto;
    max-width: 40px;
    max-height: 40px;
}
/* End Download Section  */

/* Footer Section  */
#footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    padding-top: 15px;
    padding-bottom: 10px;
}
#footer .footer-brand{
    color:lightslategray;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}
#footer h2{
    color:lightslategray;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}
#footer p{
    color: lightslategray;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}
/* End Footer Section  */