/* re-usable bits. */ 

@font-face { 
    font-family: WoodFont; 
    src: url("../fonts/fanwood-webfont.woff");
}


/* Base layout of the website that can be used as building blocks */

body { 
    background-image:url("../images/jtbackground.webp");
    background-repeat:repeat;
    background-position:left top;
    background-attachment:fixed; 
    margin-left: 30%; 
    margin-right: 30%;
}

h1 {
    font-family: WoodFont; 
    font-weight: bold;
    color:antiquewhite;
    text-align:left;
    font-size:80px;
}

h2 { 
    font-family: WoodFont;
    font-style:italic;
    color:antiquewhite;
    text-align:left; 
}

h3 { 
    font-family: WoodFont; 
    font-style: normal; 
    color:antiquewhite;
    text-align:left; 
}

h4 { 
    font-family: WoodFont; 
    font-style: normal; 
    color:antiquewhite;
    text-align:left; 
}

p { 
    font-family:'Courier New', Courier, monospace;
    color:antiquewhite;
    margin-left:3%; 
}

button { 
    border-radius: 12px;
    padding:10px 24px;
    font-size: 16px;
    background-color:#008CBA;
    text-align:center;
    text-decoration:none;
    cursor:pointer;
}


a:link { 
    font-family: WoodFont;
    color:antiquewhite;
    text-decoration: none;
}

a:hover { 
    font-family: WoodFont; 
    color:aquamarine;
    text-decoration:underline; 
}

a:visited { 
    font-family: WoodFont; 
    color:brown;
    text-decoration: none; 
}
/* Specicic element IDs. */

#profile {
    border-radius:50%;
    border-color:bisque;
}

#profile-move { 
    text-align:right; 
    float:right;
    padding-left:2%;
    padding-bottom:2%;
}

#photo {
    border-radius:80%;
    border-color:bisque;
    padding-left:3%;
    padding-right:3%;
    float:left;
}

/* class selectors */

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}