@import url('https://fonts.googleapis.com/css2?family=Monomakh&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --main-color1: #ca4cc4;
    --main-color2: rgba(255, 0, 174, 0.518);
    --text-color: #ffffff;
    --bg-color-01: #1f242d;
    --bg-color-02: #323946;
    --color-00: #0000001a;
    --port-color: #00ffff;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
}

html {
    font-family: "Poppins", serif;
    font-size: 16px;
  }

body{
    background-color: var(--bg-color-02);
    color: var(--text-color);
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.1rem;
    background-color: var(--bg-color-01);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo{
    font-size: 1.8rem;
    color: var(--main-color2);
    font-weight: 600;
    cursor: default;
}

.nav-responsive{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-color-01);
}

.nav a{
    font-size: 1.5rem;
}

.nav-responsive a{
    font-size: 1.2rem;
}

.nav a, .nav-responsive a{
    color: var(--text-color);
    padding: 0.5rem 1rem;
    transition: 0.4s;
    font-weight: 800;
}

.nav a:hover, .nav-responsive a:hover{
    color: var(--main-color1);
}

.menu-hamburguer{
    display: none;
    cursor: pointer;
}

.bar1, .bar2, .bar3{
    width: 2rem;
    height: 0.3rem;
    background-color: var(--text-color);
    margin: 0.4rem 0;
    transition: 0.3s ease;
}

.change .bar1{
    transform: translate(0, 0.65rem) rotate(-45deg);
}

.change .bar2{
    opacity: 0;
}

.change .bar3{
    transform: translate(0, -0.65rem) rotate(45deg);
}

section{
    padding: 6rem;
    padding-bottom: 0;
}

.info-bio{
    display: flex;
    flex-direction: row;
    margin: 30px;
    justify-content: center;
    align-items: center;
}

.info-box{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
}

.info-content h1{
    text-align: center;
    font-size: 50px;
    cursor:default;
    font-weight: bold;
}

.info-box p{
    padding: 5px;
    font-size: 15px;
}

.info-box .span1{
    font-size: 20px;
    font-weight: bold;
}

.info-box .span2{
    font-weight: bold;
    text-decoration: underline;
}

.info-bio img{
    width: 100%;
    margin: 0;
    padding: 0;
}

.social-content{
    display: flex;
    justify-content: center;
    padding: 20px;
    padding-top: 10px;

}

.social-content a{
    color: var(--text-color);
    padding: 10px;
    margin: 15px;
    border-radius: 50px;
    font-size: 20px;
    transition: ease 0.3s;
    background-color: var(--bg-color-01);
}

.social-content a:hover{
    background-color: var(--bg-color-02);
    border: solid 1px var(--text-color);
}

.clip{
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.clip iframe{
    width: 854px;
    height: 480px;  
}

footer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1.2rem;
    background-color: var(--bg-color-01);
}