My tribute page, need an expert eye to find bug

Hi all! I just made my tribute page, and my image resizing on a strange way, anybody knows why? Thanks in advance!

https://codepen.io/Mikra01/full/LYbeNrN

It is the border, give your image a max-width of maybe 90% to give allowance for the border:

#image{
  border-style: double;
  border-width: 20px;
  border-radius: 300px;
  max-width: 100%; /*<--Change this to something less than 100*/
  display: block;
  height: auto;
  margin: auto;
}

Awesome, thanks a lot for your help!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.