@font-face {
    font-family: "Myfont-Regular";
    src: url("fonts/Myfont-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

.my-font {
    font-family: "Myfont-Regular", serif;
}

body {
    background-color: lightblue;
}

.topnav {
    background-color: #98a3d3;
    overflow: hidden;
    display: flex;
}

.topnav a {
    text-decoration: none;
    color: white;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 15px;
    float: left;
    color: #f2f2f2;
    text-align: center;
    font-size: 19px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    background-color: #dfcc8c;
    color: white;
}

header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(238, 205, 138, 0.8);
    padding: 24px;
    color: white;
    z-index: 100;
    box-shadow: 0x 4px 12px rgb(0, 0, 0, 0.5);
}

img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    margin: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3)
}



footer {
    background-color: rgb(213, 229, 234);
    border-radius: 40px;
    color: #e0e0e0;
    padding: 48px;
    text-align: center;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero {
    background: rgb(101, 191, 218);
    color: white;
    padding: 96px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: padding 1s ease-in-out;
}




.box {
    background-color: #e7dbaf;
    border: 2px solid #333;
    padding: 20px;
    border-radius: 15px;
}

.mbox {
    background-color: #8aceff;
    border: 2px solid #333;
    padding: 20px;
    border-radius: 15px;
}