body {
    background-color: aqua;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: cornflowerblue;
    border-radius: 25px;
}
  
header h1 {
    margin: 0;
    font-family: 'MyCustomFont', sans-serif;
    font-size: 36px;
    color: white;
    display: flex;
    align-items: center;
}
  
header img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    border-radius: 15px;
}
  
nav ul {
    list-style: none;
    display: flex;
}
  
nav a {
    padding: 10px;
    text-decoration: none;
    color: white;
    font-family: sans-serif;
}

@font-face {
    font-family: 'MyCustomFont';
    src: url('fonts/classiccassette-x3ad5.otf') format('truetype');
  }
  