@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

*{
    font-family: 'Quicksand', sans-serif;
}

a{
    text-decoration: none;
    color: #fff;
}

body{
    background-image: url('https://plus.unsplash.com/premium_photo-1675490808284-7c8b3c1f0795?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.container{
    display: flex;
    justify-content: center;
    perspective: 1000px;
    transition: perspective 3s ease-in-out;
}


.social-media {
    text-align: center;
    margin-top: 5px;
    position: relative;
}


.social-media {
    text-align: center;
}
.icon {
    margin-right: 7px;
}

social-icons {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.glass-container{
    display: block;
    margin-top: 10vh;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.56);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(11.6px);
    -webkit-backdrop-filter: blur(11.6px);
    transition: transform 1s;
}

.glass-container:hover {
    perspective: 2000px;
}

.container:hover .glass-container {
  transform: rotateX(10deg) rotateY(5deg);
}

.profile-picture {
    margin-top: -20%;
    text-align: center;
}

.profile-picture img {
    width: 200px;
    height: 200px;
    border-radius: 10%;
    border: 2px solid rgba(0, 0, 0, 0.507);
}
.logo{
    display: inline-block;
    font-size: 30px;
    font-weight: 600;
    margin-top: -10px;
}

::-webkit-scrollbar {
    width: 0px;
  }

  ::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.53); 
    border-radius: 0px; 
    border: 0px solid rgba(0, 0, 0, 0.53);
  }

  ::-webkit-scrollbar-track {
    background-color: #000000;
  }

ul.nav-links {
    margin-left: -10%; 
    text-align: center;
    list-style: none;
}

li.nav-link{
    display: inline-block;
    margin-left: 30px;
    font-size: 17px;
    font-weight: 300;
}

.content{
    display: flex;
    width: 100%;
}

.main{
    margin-top: 10vh;
    display: inline-block;
    padding: 20px;
}

.main h2{
    font-size: 35px;
    color: #fff;
}

.main p{
    font-size: 16px;
    line-height: 23px;
    color: rgba(208, 208, 208, 0.871);
}

button{
    margin-top: 10px;
    width: 100%;
    height: 40px;
    font-size: 15px;
    color: #ffffffc4;
    background-color: transparent;
    border: 0.1px solid #ffffffc3;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover{
    background-color: #0000003d;
    border: 1px solid #4c4c4ca8;
}

.image-wrapper{
    display: flex;
    margin-top: 5vh;
    position: relative;
}

.image-wrapper img{
    max-width: 500px;
}

.attrebute{
    position: absolute;
    bottom: 20px;
    right: 0;
    font-size: 12px;
}

@media screen and (max-width: 1075px) {
    .content{
        flex-direction: column;
    }
}

@media screen and (max-width: 720px) {
    .logo{
        font-size: 22px;
    }
    li.nav-link{
        font-size: 13px;
    }
    .main h2{
        font-size: 28px;
    }
    .main p{
        font-size: 15px;
    }
    button{
        font-size: 13px;
    }
    .image-wrapper img{
        max-width: 400px;
    }
}