@font-face {
    font-family: 'Lexend';
    src: url(Fonts/Lexend/Lexend-VariableFont_wght.ttf);
}

@font-face {
    font-family: 'Montserrat';
    src: url(Fonts/Montserrat/Montserrat-VariableFont_wght.ttf);
}

h1 {
    font-family: Lexend;
}

h2, p, button {
    font-family: Montserrat;
}

body {
    text-align: center;
    background-color: #45b3e0;
    background-image: linear-gradient(#45b3e0, #c9e9f6), fixed;
}

button {
    color: #87ceeb;
    background-color: transparent;
    border: 2px solid #87ceeb;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-family: Montserrat;
}

button:hover {
    background-color: #87ceeb;
    color: white;
}

#logo {
    width: 150px;
    height: auto;
    margin-top: 45px;
    margin-bottom: -40px;
}

nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: fixed;
    padding: 16px 32px;
    top: 0;
    left: 0;
    right: 0;
    -webkit-text-stroke: black 0.5px;
}

nav > ul {
    display: flex;
    list-style-type: none;
    gap: 30px;
}