@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body
{
    background-image: url('https://wallpapercave.com/wp/wp5308033.png');
    background-size: 5000px 8000px;
    display: flex;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
    justify-content: center;
}
#main
{
    color: white;
    background: none;
    background-color: rgba(26, 26, 26, 0.507);
    box-shadow: 0 0 10px black;
    border: 2px solid rgba(26, 26, 26, 0.5071);
    position: relative; top: 2em;
    border-radius: 6px;
    padding: 40px;
    animation: fadeIn 4s;
    width: 30%;
    text-align: center;
}
#main span
{
    text-align: left;
    font-size: 30px;
    text-shadow: 0 0 10px;
    padding-bottom: 10px;
}
#main h2
{
    font-size: 25px;
    text-align: left;
    border-bottom: 1px solid white;
    text-shadow: 0 0 10px;
}
#main h3
{
    font-size: 13px;
    animation: glow 5s infinite;
    line-height: 14px;
    text-shadow: 0 0 15px;
}
#langs h4
{
    font-size: 25px;
    text-align: left;
    position: relative;
    text-shadow: 0 0 10px;
    border-bottom: 1px solid;
    padding-bottom: 10px;
}
#langs h3
{
    position: relative;
    animation: glow 5s infinite;
    bottom: 1em;
}
#learning h4
{
    font-size: 25px;
    position: relative;
    bottom: 1em;
    text-align: left;
    text-shadow: 0 0 10px;
    border-bottom: 1px solid;
    padding-bottom: 10px;
}
#learning h3
{
    position: relative;
    bottom: 3em;
    animation: glow 5s infinite;
}
#contact h4
{
    font-size: 15px;
    position: relative;
    bottom: 2em;
    text-align: left;
    text-shadow: 0 0 10px;
    border-bottom: 1px solid;
    padding-bottom: 10px;
}
#contact h3
{
    position: relative;
    animation: glow 5s infinite;
    bottom: 2em;
}
.blinking-cursor
{
  user-select: none;
  animation: blink 1s steps(2, start) infinite;
}
@keyframes blink 
{
    to{
        visibility: hidden;
    }
      
}
@keyframes fadeIn
{
    0%
    {
        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}
@keyframes glow
{
    0%
    {
        color: rgb(228, 228, 228);
        text-shadow: 0 0 5px white;
    }
    50%
    {
        color: white;
        text-shadow: 0 0 10px white;
    }
    100%
    {
        color: rgb(228, 228, 228);
        text-shadow: 0 0 5px white;
    }
}
