* {
    box-sizing:border-box;
}

@font-face {
    font-family: 'IJT'; /*a name to be used later*/
    src: url('assets/Imanifont_Regular.woff'); /*URL to font*/
}

@font-face {
    font-family: 'Cafe';
    src: url('assets/LouisGeorgeCafe.woff')
}

body {
    background:#f2e5f8;
    margin:0;
    overflow:scroll;
}

img {
    max-width:100%;
}

.container {
    background:#f2e5f8;
    /* vh means viewport height! */
    height:fit-content;
    /* no need for width, it's a block element so it's already 100% */
    display:flex;
    flex-direction:column;
    padding:0;
    gap:0;
}

/* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  background-color: #1f153c;
  padding: 0px 40px;
  position:sticky;
  top: 0;
  font-family: 'IJT';
  display:flex;
  align-items:center;
  justify-content: space-between;
}

/* Style the header links */
.header a {
  float: left;
  color: #fba3e7;
  text-align: center;
  text-decoration: none;
  font-size: 30px;
  line-height: 25px;
  border-radius: 100px;
  padding:12px;
  margin: 0px 8px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

.header a.logo:hover {
  font-size: 25px;
  font-weight: bold;
  background-color: #1f153c;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #fba3e7;
  color: #1f153c;
}

/* Style the active/current link*/
.header a.active {
  background-color: #b454df;
  color: white;
}

.header a.active:hover {
  background-color: #7754df;
  color: white;
}

/* Float the link section to the right */
.header-right {
  float: right;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
}

.box {
    font-family:'Cafe';
    font-size:large;
    margin:40px;
    display:flex;
    /* background:white; */
    overflow:hidden;
    justify-content:center;
    align-items:center;
}

.left {
    width:40vw;
}

.right {
    width:30vw;
    float:right;
}

.right1 {
    width:50vw;
    float:right;
}

.foot {
  display:flex;
  justify-content:center;
  align-items:center;
  height:30px;
  font-family:'IJT';
  font-weight:bolder;
  font-size:20px;
  color:#aa88b8;
  /* background:red; */
}

/* 7754df blue
e556c4 pink
b454df purple */
