@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'sans-serif';
}

.header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   padding: 20px 10%;
   background: transparent;
   display: flex;
   justify-content: space-between;
   align-items: center;
   z-index: 100; 
}

.logo {
    font-size: 25px;
    color: #031540;
    text-decoration: none;
    font-weight: 700;
}

.navbar a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active {
    color: #00abf0;
}

.home {
    height: 100vh;
    background: linear-gradient(-90deg, #031540 100%, #fff 0%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
}

.home-image {
    width: 600px;
    height: 600px;
    background: white;
    border: 25px solid #fff;
    border-radius: 50%;
    position: relative;
    overflow: hidden; 
}

.home-image::before {
    content: "About Me";
    position: absolute;
    top: 10px; 
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: black;
    font-weight: bold;
    text-align: center;
    width: 100%; 
    transition: font-size 0.3s ease; 
}

.home-image:hover::before {
    font-size: 28px; 
}

.home-image::after {
    content: "👋 Hey there! I'm a 16-year-old developer specializing in creating awesome custom Discord bots and simple websites. I'm all about delivering high-quality, reliable solutions that meet your unique needs. 🚀✨";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: black;
    text-align: center;
    width: 90%; 
    line-height: 1.5;
    overflow: hidden;
    opacity: 0; 
    transition: opacity 0.5s ease;
}

.home-image:hover::after {
    opacity: 1; 
}

.home-content {
    max-width: 600px;
    color: #fff;
    text-align: right;
}

.home-content h1 {
    font-size: 55px;
    line-height: 1.2;
}

.home-content h3 {
    font-size: 60px;
    color: #00abf0;
    -webkit-text-stroke: .5px #fff;
}

.home-content p {
    font-size: 16px;
    margin-top: 20px;
}

.home-sci {
    margin: 25px 0 40px;
}

.home-sci a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 20px;
    color: #00abf0;
    text-decoration: none;
    margin-left: 12px;
    transition: .5s;
}

.home-sci a:hover {
    background: #00abf0;
    color: black;
    border-color: #00abf0;
    box-shadow: 0 0 10px #00abf0;
}


.home {
    height: 100vh;
    background: linear-gradient(-90deg, #031540 100%, #fff 0%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
}

