* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     line-height: 1.4;
}
.container{
    margin: 0 auto  ;
    font-family: Montserrat;
    color: white;
    /* text-shadow: 1px 1px 1px black; */
}

header{
    background-color: black;
    padding-top: 1%;
    padding-left: 5%;
    padding-bottom: 1%;
    color: white;
    display: flex;
    justify-content: center;
    display: wrap;
}
a{
    color: white;
    margin-right: 70px;
    
}
#linkedin, #github{
    height: 20px;
    border-radius: 25%;
}   

main{
    padding: 5%;
    height: 100vh;
    background-color: #0078B7;
    /* background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" viewBox="0 0 700 700" width="700" height="700" opacity="0.89"><defs><linearGradient gradientTransform="rotate(91, 0.5, 0.5)" x1="50%" y1="0%" x2="50%" y2="100%" id="ffflux-gradient"><stop stop-color="hsl(228, 49%, 72%)" stop-opacity="1" offset="0%"></stop><stop stop-color="hsl(246, 95%, 21%)" stop-opacity="1" offset="100%"></stop></linearGradient><filter id="ffflux-filter" x="-20%" y="-20%" width="140%" height="140%" filterUnits="objectBoundingBox" primitiveUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feTurbulence type="fractalNoise" baseFrequency="0.004 0.003" numOctaves="2" seed="136" stitchTiles="stitch" x="0%" y="0%" width="100%" height="100%" result="turbulence"></feTurbulence><feGaussianBlur stdDeviation="14 24" x="0%" y="0%" width="100%" height="100%" in="turbulence" edgeMode="duplicate" result="blur"></feGaussianBlur><feBlend mode="color-dodge" x="0%" y="0%" width="100%" height="100%" in="SourceGraphic" in2="blur" result="blend"></feBlend><feColorMatrix type="saturate" values="3" x="0%" y="0%" width="100%" height="100%" in="blend" result="colormatrix"></feColorMatrix></filter></defs><rect width="700" height="700" fill="url(%23ffflux-gradient)" filter="url(%23ffflux-filter)"></rect></svg>');; */
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    
}
.info{
    margin-right: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top{

    /* width: 50%; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
}


#profile{
    border-radius: 50%;
    height: 150px;
    box-shadow: 1px 1px 1px white;
}

.content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid white;
    border-radius: 15px;
    box-shadow: 3px 3px 3px white;
    width: 50%;
    padding: 20px;
}

@media only screen and (max-width: 1000px) {
   .content{width: 75%;}
    
  }

@media only screen and (max-width: 650px) {
    .content{width: 90%;}
    header{
        width: 100%;
        background-color: black;
        padding-top: 1%;
        padding-left: 5%;
        padding-bottom: 1%;
        color: white;
        display: inline-block;
    }
    .imgs, .links{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    a{
        margin: 10px;
    }
    
     
   }

@media only screen and (max-width: 550px) {
    .content{width: 90%;}
    header{
        width: 100%;
        background-color: black;
        padding-top: 1%;
        padding-left: 5%;
        padding-bottom: 1%;
        color: white;
        display: inline-block;
        align-items: center;
    }

    .top{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .info{
        align-self: center;
        margin: 10px;
    }
}