@import url("https://fonts.googleapis.com/css2?family=Exo+2&display=swap");
:root {
    --main-bg-color: #34153c;
    --main-text-color: #4495c5;
    --main-title-color: #ccd6f6;
    --inline-distance: 10%;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    color: var(--main-text-color);
    background: var(--main-bg-color);
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}
.section-content > {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    scroll-snap-align: start;
}
.slide-container {
    height: 100vh;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}
h1 {
    font-family: "NTR", sans-serif;
    color: var(--main-title-color);
    font-size: 4rem;
}
#ppicture {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid var(--main-text-color);
    margin: 20px;
}
.ppholder {
    display: flex;
    flex-direction: row;
    align-items: center;
}
h2 {
    font-family: "NTR", sans-serif;
    color: var(--main-title-color);

    font-size: 3rem;
}
p {
    margin: 0;
}
a {
    text-decoration: none !important;
    color: var(--main-text-color);
}

.fixed-menu {
    border: #1c0622;
    border-style: solid !important;
    border-radius: 25px 25px 0px 25px !important;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px;
    z-index: 4000;
}
.menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 7px;
    margin: 5px;
    background: #1c062269;
}
.fontexo {
    font-family: "Exo 2", sans-serif !important;
    font-size: 1.5rem;
}
#home {
    padding-inline: var(--inline-distance);
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.primary-annimation {
    opacity: 0;
    animation: fadeIn ease-in 1;
    animation-fill-mode: forwards;
    animation-duration: 1s;
}
.primary-annimation.secondary-annimation {
    animation-delay: 0.5s;
}

.prima-annimation {
    opacity: 0;
    animation: fadeIn ease-in 1;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
}
.prima-annimation.seco-annimation {
    animation-delay: 0.35s;
}

#education {
    padding-inline: var(--inline-distance);
    width: 80%;
}
#skills {
    padding-inline: var(--inline-distance);
    width: 80%;
}
#projects {
    padding-inline: var(--inline-distance);
    width: 80%;
}

#hobbies {
    padding-inline: var(--inline-distance);
    width: 80%;
}
.hobby-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}
.hobby-card {
    margin: 1%;
    width: 19%;
}
.hobby-img {
    width: 200px;
    height: 200px;
    display: block;
    /* margin-left: auto;
    margin-right: auto; */
    margin: auto;
    padding-top: 8%;
    padding-bottom: 8%;
}
.hobby-titile {
    margin: 2%;
    text-align: center;
}

#contact {
    padding-inline: var(--inline-distance);
    width: 80%;
}

.skill-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.skill {
    margin: 3%;
    width: 27%;
}

.skill-name {
    font-size: 20px;
    margin-bottom: 5px;
}

.skill-bar {
    width: 100%;
    background-color: #ddd;
    border-radius: 5px;
}

.skill-percentage {
    height: 20px;
    border-radius: 5px;
    background-color: #0e7f79;
    text-align: right;
    line-height: 20px;
    color: #2e1235;
}
