

body {
  background-color: #E6EBED;
  font-family:'Fira Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
--arcane-color: #3933F6;
margin: 0px;

}
footer
{
background-color: var(--arcane-color);
color: white;
width: 100%;
padding:20px;
overflow: hidden;
display: flex;
gap: 100px;
}
.footerTitle
{
display: inline;
font-size: large;
vertical-align: middle;
}
.footerLinks
{
  font-size: medium;
  display: flex;
  gap: 30px;
  color: white;
}

.footerText
{
  color: white;
  margin-top: auto;
  margin-bottom: auto;
  vertical-align: middle;
  display: inline;
  height: inherit;
  
}
.socialLinksContainer
{
  color: white;
  font-size: medium;
  
  display: flex;
  gap: 30px;
}
.socialLink
{
  color: white;
}

.footerText:hover,.socialLink:hover
{
color: lightblue;
}

h1
{
  font-size: 26px;
}
h2
{
  font-size: 24px;
}
h3
{
  font-size: 22px;
}
h4
{
  font-size: 20px;
}
h5
{
  font-size: 18px;
}
h6
{
  font-size: 16px;
}

.button
{
  color: white;
background-color: var(--arcane-color);
width: 100px;
height: 20px;
padding:5px;
border: black solid;
display: block;
text-align: center;
}

.button:hover
{
color: lightblue;
display: block;
text-align: center;
border: purple solid;
}

nav
{
width:100%;
height: auto;
text-decoration: none;
font-weight: bold;
padding: 10px;
}

.mainSection
{
margin-left: 100px;
margin-right: 100px;

}

a
{
color:black;
text-decoration: none;
}
a:hover
{
  color: blue;
}
.title
{
  font-size: x-large;
}
.links
{
  font-size: medium;
  position: absolute;
  right: 15px;
  top:10px;
  display: flex;
  gap: 15px;
  
}

.featured_project_caption
{
float: right;
width: 70%;
}

.image-projects
{
height: 365px;
width: 400px;
}

.works-grid
{
display: grid;
grid-template-columns: auto auto auto;
grid-template-rows: auto auto;
gap: 20px;
}
.project
{

}
.project_caption
{

}

 /* Extra small devices (phones, 600px and down) */
 @media only screen and (max-width: 600px) 
 {
  .featured_project_image
  {
    width: 500px;
    height: 500px;
  }
  .grid
{
display: flex;
flex-direction: column;
gap: 15px;
margin-bottom: 20px;
}
.grid-item
{
  
}
 }

 /* Small devices (portrait tablets and large phones, 600px and up) */
 @media only screen and (min-width: 600px) 
 {
  .featured_project_image
  {
    width: 500px;
    height: 500px;
  }
  .grid
{
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 20px;
}
.grid-item
{
  
}
 }
 
 
 /* Extra large devices (large laptops and desktops, 1200px and up) */
 @media only screen and (min-width: 1200px) 
 {
  .featured_project_image
  {
    width: 400px;
    height: 250px;
    border-radius: 10px;
  }
  .grid
{
display: flex;
flex-direction: column;
gap: 30px;
margin-bottom: 20px;

}
.grid-item
{

}
 } 