/* font untuk logo */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:wght@600&display=swap');
/* cara panggil
font-family: 'Ubuntu Mono', monospace; */

/* font untuk page */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
/* cara panggil
font-family: 'Open Sans', sans-serif; */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body{
    color: white;
    font-family: 'Open Sans', sans-serif;
    text-align: justify;
}
a {
    color: white;
    text-decoration: none;
}
.wrap {
    position: relative;
    min-height: 100vh;
    padding-bottom: 25vh;
    padding-top: 15vh;
    background-color: #161616;
    box-shadow: 0px 10px 20px -2px #000000;
}
#content {
    margin-left: 5%;
    margin-right: 5%;
}

/* bagian navbar */
nav {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 10%;
    width: 100%;
    background-color: #161616;
    box-shadow: 0px 5px 10px -2px #202020;
    transition: all 0.3s;
}
#logo {
    position: relative;
    width: 30px;
    font-size: 25px;
    line-height: 20px;
    margin-left: 5%;
}
.logo {
    font-family: 'Ubuntu Mono', monospace;
}
#navMenu {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#navMenu li {
    list-style: none;
    font-size: 1.2rem;
}
#navMenu li a:hover {
    color: #C34939;
    cursor: pointer;
}
#accBtn {
    position: relative;
    margin-right: 5%;
}
#accountbtn {
    width: 90px;
    height: 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.08rem;
    color: white;
    background-color: #C34939;
}
#accountbtn:hover {
    background-color: #A33324;
}

/* bagian Footer */
#transparent {
    position: relative;
    height: 460px;
}
footer {
    position: fixed;
    bottom: 0;
    height: 460px;
    width: 100%;
    padding-top: 15px;
    background-color: #000000;
    display: flex;
    justify-content: center;
}
#footerWrap {
    width: 90%;
}
#footerHeader {
    font-size: 35px;
    margin-bottom: 15px;
}
#footerContent {
    display: flex;
    justify-content: space-between;
    width: 90%;
}
#footerWrap #footerContent .footerSection .listNone {
    list-style: none;
}
.footerTitle {
    font-size: 25px;
    margin-bottom: 20px;
}
.footerSection address {
    margin-top: 15px;
}
.cIcon {
    width: 42px;
    height: 42px;
    border-radius: 5px;
    background-color: grey;
}
.cIcon:hover {
    opacity: 0.5;
}
#contactIcon {
    list-style: none;
    margin-bottom: 15px;
}
#contactIcon li {
    margin: 0px 5px;
    display: inline-block;
}
.facebook {
    background: url(../img/contactIcon.png) -12.3px -16px;
}
.twitter {
    background: url(../img/contactIcon.png) -79px -16px;
}
.youtube {
    background: url(../img/contactIcon.png) -146px -16px;
}
.instagram {
    background: url(../img/contactIcon.png) -12px -79px;
}
.whatsapp {
    background: url(../img/contactIcon.png) -79px -79px;
}
.line {
    background: url(../img/contactIcon.png) -79px -142px;
}
#contactList {
    list-style: none;
}
#contactList p {
    padding-left: 40px;
}

abbr {
    text-decoration: none;
}
.listCon {
    position: relative;
    display: flex;
    width: 100px;
    height: 30px;
}
.listCon img {
    position: absolute;
}
.listCon .conTxt {
    position: absolute;
    left: 40px;
}
.accHover:hover {
    color: #C34939;
}
.accFooter:hover {
    color: #C34939;
    font-weight: bold;
}

/* bagian copyright */
#copy {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    margin-bottom: 10px;
    color: rgb(121, 121, 121);
}

/* z-index */
.wrap {
    z-index: 1;
}
nav {
    z-index: 1000;
}
footer {
    z-index: 0;
}