* {
    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')
}

html {
  scroll-behavior: smooth;
}

body {
    /* background:#f2e5f8; */
    background:white;
    margin:0;
}

img {
    max-width:100%;
}

.container {
    /* background:#f2e5f8; */
    background:white;
    /* 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;
  transition:0.5s;
}

/* 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;
  scroll-behavior: smooth;
}

/* 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;
  }
}


.text {
    font-family:'Cafe';
    font-size:large;
    margin:3%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.cradle {
    /* vh means viewport height! */
    height:fit-content;
    display:flex;
    flex-direction:column;
    padding:10px;
    gap:10px;
}

.top {
    height:25%;
    display:flex;
    flex-direction:row;
    justify-content: center;
    align-items:center;
    gap:10px;
}

.top-item {
    width:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.bottom {
    height:75%;
    display:flex;
    gap:10px;
}

.left {
    width:50%;
    display:flex;
    flex-direction:column;
    gap:10px;
    justify-content: center;
    align-items:center;
}

.left-item {
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.right {
    width:50%;
    display:flex;
    flex-direction:column;
    gap:10px;
    justify-content: center;
    align-items:center;
}

.right-item {
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.working:hover {
  transition:0.5s;
  scale:1.1;
}

.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 */
