h1{
    text-align: center;
    font-family: myfont;
    font-size: 90px;
}


@font-face {
    font-family: myfont;
    src: url(RobotoMono-VariableFont_wght.ttf) format("truetype");
}

body {
    background: linear-gradient(45deg, #1e3a8a, #4c1d95, #6d28d9, #2563eb, #1e3a8a);
    background-size: 1000% 1000%;
    animation: gradientShift 12s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

p{
    text-align: center;
    font-family: myfont;
    font-size: 30px;
}

body{
    margin: 0;
    padding: 0;
}

ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color:#181C14;
    font-family: myfont;
    font-size: 20px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    position: sticky;
    top: 0;
}

ul li {
    float: left;
}

ul li a {
    display: block;
    color:beige;
    text-align: center;
    padding: 15px 20px;
    text-decoration: solid;
}
ul li a:hover {
    background-color: rgb(0, 0, 0);
}

h2{
    font-family: myfont;
    font-size: 50px;
    margin: 50px;
    padding: 50px;
}

h3{
    font-family: myfont;
    font-size: 30px;
    float: left;
    margin: 50px;
    padding: 50px;
}

.images{
    display: flex;
    gap: 16px;
    margin-top: 24px;
}