*{
    margin: 0;
    color: aliceblue;
    background-color: #000000;
    padding: 0;
    font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    margin: 10px;
    width: 97%;
    padding: 20px;
    background-color:transparent;
    justify-content: space-between;
     display: flex;
    align-items: center;
    z-index: 100;
    
}


.name{
    font-size: 25px;
    color: rgb(224, 81, 81);
    text-decoration: none;
    font-weight: 700;
    justify-content: space-between;
    padding-left: 30px;
    margin:0 30px;
    
}


.tataki a{
    font-size: 18px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 500;
    margin: 50px;
    transition: .3s;
        
    
}

.tataki a:hover,
.tataki a.active {
    color: rgb(190, 22, 22);
    border-bottom:1px solid red; 
}

section{
    min-height: 100vh;
    padding: 5rem 9% 5rem;
}
.home{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    background-color: #000000;
}  
.home .home-content h1{
    font-size: 6rem;
     font-weight: 700;
     line-height: 1.3;
}
span{
    color: #b74b4b;
}
.home-content h3{
  font-size: 4rem;
  margin-bottom: 1rem; 
  font-weight: 700; 
}
.home-img{
    border-radius: 50%;
}
.home-img img{
    position: relative;
    width: 32vh;
    border-radius: 50%;
    box-shadow: 0 0 25px solid red;
    cursor:pointer ;
    transition: 0.2s linear;

}
.home-img img:hover{
    font-size: 1.8rem;
    font-weight: 500;
}

