@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800;900&family=Quicksand:wght@300;400;500;600;700&display=swap');

:root{
    --Playfair: 'Playfair Display', serif;
    --Quicksand: 'Quicksand', sans-serif;
    --Roboto: 'Roboto', sans-serif;
    --dark: #3c393d;
    --exDark: #2b2b2b;

* {
  box-sizing: border-box;
}

body {
  font-family: Times New Roman;
  padding: 20px;
  background: #f1f1f1;
}

/* Header/Blog Title */
.header {
  padding: 30px;
  font-size: 40px;
  text-align: center;
  background: white;
}
.navbar {
  width: 100%;
  background-color: #E6E6FA;
  overflow: auto;
 
}

/* Navigation links */
.navbar a {
  float: left;
  padding: 12px;
  color: black;
  text-decoration: none;
  font-size: 20px;
  font-weight:400;
  letter-spacing:1mm;
  width: 25%; 
  text-align: center; 
  border-right:1px solid #bbb
  
 
}

/* Adding a background color on mouse-over */
.navbar a:hover {
  background-color: #EE82EE;
}

/* Styling the current/active link */
.navbar a.active {
  background-color: #DDA0DD;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
  float: left;
  width: 65%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 35%;
  padding-left: 20px;
}
.fakeimg {
  background-color: #FFC0CB;
  width: 100%;
  padding: 20px;
}



/* Add a card effect for articles */
.card {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


/*Input from the user */
input[type=text], select, textarea {
  width: 98%; 
  padding: 12px; 
  border: 1px solid #ccc; 
  border-radius: 4px; /
  box-sizing: border-box; 
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical 
}

/* Styling the submit button with a specific background color etc */
input[type=submit] {
  background-color: #FF00FF;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* hivering with a different color effect */
input[type=submit]:hover {
  background-color: #BA55D3;
}

/* Adding a background color and some padding around the form */
.container-contact {
  border-radius: 5px;
  background-color: #E6E6FA;
  padding: 20px;
}


/* footer */
footer{
    background: var(--exDark);
    color: #FFF;
    text-align: center;
    padding: 2rem 0;
}
.social-links{
    display: flex;
    justify-content: center;
    margin-bottom: 1.4rem;
}
.social-links a{
    border: 2px solid #FFF;
    color: #FFF;
    display: block;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    margin: 0 0.3rem;
    transition: all 0.5s ease;
}

.social-links a:hover{
    background: #FFF;
    color: var(--exDark);
}
.footer span{
    margin-top: 1rem;
    display: block;
    font-family: var(--Playfair);
    letter-spacing: 2px;
}
}
/* Responsive layout */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {
    width: 100%;
    padding: 0;
  }
}

