* {
    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 10px black; */
}

header{
    background-color: black;
    padding-top: 1%;
    padding-left: 5%;
    padding-bottom: 1%;
    color: white;
    display: flex;
    justify-content: center;
}
a{
    color: white;
    margin-right: 70px;

    align-items: center;
    
}
#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;
    justify-content: space-between;
    overflow: scroll;
    
}

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


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