﻿/******************************************************************
 * AMStyles.css - Custom Design Portfolio for 4L13NM1NT
 * Author: Frédéric Charette - Raindevel.com (c) 2023
 * 
 ******************************************************************
 * 
 */

 * {
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Times New Roman', Helvetica, sans-serif;
    /* background: url(gallery/Illustrations\ digitales\ 002.jpg) no-repeat center fixed;
    background-size: cover; */
  }

/* Create unequal columns that floats next to each other */

  /* Navigation */
  .nav {
    float: left;
    width: 200px;
    text-align: left;
  }

  /* Side navigation links */
  .nav a {
      color: rgb(0, 0, 0);
      padding: 16px;
      text-decoration: none;
      display: block;
    }
  
    /* Change color on hover */
      .nav a:hover {
      background-color: #03a0ac;
      color: rgb(238, 255, 0);
    }

    /* Content */
    .content {
    float: left;
    padding-left: 15px;
    width: 85%;
    overflow-wrap: break-word;
    }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }

  /* Style the footer */
  .footer {
    width:100%;
    padding: 15px;
    text-align: center;
  }

  .footer p{
    font-size: 11px
  }

/* Responsive layout - makes the columns stack on top of 
each other instead of next to each other */
@media only screen and (max-width: 800px) {

  /* Navigation */
  .nav {
    overflow: hidden;
  }

  .nav img {
    border-radius: 50%;
  }

  /* Side navigation links */
  .nav a {
    width:100%;
    float: left;
    color: rgb(0, 0, 0);
    text-decoration: none;
  }
  
  /* Change color on hover */
    .nav a:hover {
    background-color: #03a0ac;
    color: rgb(238, 255, 0);
  }

  /* Content */
  .content {
    overflow-wrap: break-word;
  }

  /* Style the footer */
  .footer {
    width:100%;
    background-color: #f1f1f1;
    padding: 15px;
    text-align: center;
  }

  .footer p{
    font-size: 11px
  }

}

