/* index.html's css*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

nav{
    height: 10%;
    width: 100%;
    background-color: #22223B;
}

div{
    height: 100%;
    width: 100%;
}

body {
    
    font-family: 'Roboto Mono', monospace;
    color: #F2E9E4;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
}

#options {
    display: flex;
    justify-content: space-around;
    gap: 4%;
    font-size: 3vw; 
}

.nav-item {
    text-decoration: none;
    color: #F2E9E4;
    padding: 1%;
    transition: color 0.2s ease;
}

.nav-item:hover {
    color: #C9ADA7;
}

#japan h1 {
    font-size: 10vw;
    text-shadow:
        0 0 5px #22223B,
        0 0 10px #22223B,
        0 0 20px #22223B;
    
}

#japan{
    background-color: #22223B;;
}

.japanheading {
    padding: 10%;
    padding-bottom: 0%
}

.footer {
    font-size: 2vw;
    padding-top: 1%;
    width: 100%;
    height: 27%;
}

.fa-phone {
  font-size: 2.5vw;
  color: #F2E9E4;
  cursor: pointer;
}

a i {
  font-size: 2.5vw; /* Adjust icon size */
  margin: 0 10px;
  color: #F2E9E4;
  transition: color 0.3s;
}

a i:hover {
  color: #C9ADA7;
}

a {
  display: inline-block;
  text-decoration: none;
  margin: 0 10px; /* adds space left and right */
}

/*about.html's css*/


#intro {
    background-color: white;
    color:#22223B;
    padding: 5%;
    padding-top: 3%;
}

.navabout {
    height: 20%;
    width: 100%;
}


#intro> p {
    text-align: left;
    font-size: 1.3vw;
}

/* resume.html's css */
.resume {
    background-color: white;
    color: #22223B;
}

.resumebody {
    text-align: left;
    padding-left: 5%;
    padding-right: 5%;
}


.resumeheading {
    text-align: left;
    padding-left: 5%;
    padding-right: 5%;
}

.list {
    list-style-type: disc; 
    list-style-position: inside; 
    padding-left: 20px; 
    margin-left: 20px; 
    
}

/* Visitor Counter  */
#visitorcounter {
     font-size: 2vw;
     margin-top: 2%;
}