@font-face {
    font-family: "font1";
    src: url("../assets/fonts/sf-pro-display/SFPRODISPLAYREGULAR.OTF");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "font1";
    line-height: 1.5;
    color: whitesmoke;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(105,9,121,1) 49%, rgba(106,0,255,1) 100%);
    min-height: 100vh;
}

h1, h2, h3 {
    line-height: 1.1;
    margin-bottom: 1rem;
    text-align: center;
}

a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

button, #cv {
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}


::-webkit-scrollbar {
    width: 12px;
    background-color: #242424;
}

::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 10px;
    border: 3px solid #fff;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #fff;
}

@media (max-width: 430px) {
    h2{
        font-size: 1.2rem;
    }
}