@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
*{margin: 0; padding: 0; box-sizing: border-box; border: border-box; font-family: 'Roboto', sans-serif; list-style: none; text-decoration: none; overflow-x: hidden;}

html {
    scroll-behavior: smooth;
}

body {
    background-image: linear-gradient( 108.7deg,  rgba(221,22,224,1) 11%, rgba(111,22,190,1) 88.2% );
    width: 100%;
    height:100vh;
    scroll-behavior: smooth;
}

header {
    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    position: fixed;
    width: 100%;
}

.nav--links {
    height: 70px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 20px;
}

.nav--links li a {
    color: whitesmoke;
}

.main--section {
    border: 2px solid red;
    width: 80vw;
    height: 80vh;
    margin: 90px auto;
    border-radius: 10px;
    max-width: 400px;
    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.image--div {
    text-align: center;
    border-radius: 10px;
}

.image--div img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 10px;
    border: 5px solid white;
    padding: 5px;
}

.name--div {
    text-align: center;
    padding: 30px;
}
.name--div h1 {
    color: #fff;
}

.name--div p {
    color: whitesmoke;
    margin: 8px;
}

.links {
    padding: 30px;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 30px;
}

.links a {
    color: white;
}

.links a:hover {
    transform: scale(1.4);
    transition: 0.3s all ease-in-out;
}

.btn--div {
    text-align: center;
}

.download-btn{
    text-align: center;
    width: 200px;
    height: 40px;
    border-radius: 10px;
    border: none;
    outline: none;
    cursor: pointer;
    margin: 40px;
    padding: 10px;
    font-size: 16px;
    color: rgba(221,22,224,1);
    overflow: hidden;
}

.download-btn:hover {
    background-color:rgba(221,22,224,1);
    color: white;
    border: 2px solid white;
    transition: 0.3s all ease-in-out;
}

.about--main--section {
    margin-top: 30px;
    height: 100vh;
    width: 100vw;
    text-align: center;
    padding: 20px;
}

.about-me--section {
    margin-top: 40px;
}

.about-me--section h1 {
    color: white;
    font-family: serif;
    margin: 10px;
}

.about-me--section p {
    text-align: center;
    font-size: 18px;
    color: white;
    margin: 10px;
}

.horizontal--line {
    border: 1px solid white;
    min-width: 100px;
    margin: auto;
}

.skills {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100px;
    width: 100%;
    margin-top: 30px;
    font-size: 19px;
    color: white;
}

.first--project {
    margin: 50px;
    height: 60px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 10px;
    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    height: 80px;
}

.first--project button {
    padding: 8px;
    border: none;
    border-radius: 10px;
}

.first--project button a {
    color: rgba(221,22,224,1);
    font-weight: bold;
    font-size: 18px;

}

.first--project button:hover {
    background: rgba(221,22,224,1);
}

.first--project button a:hover {
    color: white;
}
