nav {
    width: calc(100% - 20cqmax);
    height: var(--nav-height);
    border-radius: 2cqmax;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2cqmax;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 15px;
    overflow-x: auto;
    border-bottom: 1.5px solid rgb(220, 220, 220, 0.5);
    background-color: rgba(235, 235, 235, 0.35);
}

nav img {
    height: calc(var(--nav-height) - 15px);
}

nav a {
    font-size: 1.75cqmax;
}

main {
    margin-top: calc(var(--nav-height) + 10cqmax);
    display: flex;
    flex-direction: column;
}

div.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    max-height: 100%;
    gap: 3cqmax;
}

img[src="Images/1.svg"], img[src="Images/2.svg"]  {
    width: 35%;
    border-radius: 0.75cqmax;
    box-shadow: 0px 50px 20px -10px rgba(0,0,0,0.35);
}

button.el {
    width: 25cqmax;
    height: 20cqmax;
    align-items: normal;
    justify-content: center;
    flex-direction: column;
    gap: 0%;
    border-width: 1cqmax;
}

button.el img {
    max-width: 25cqmax;
    min-width: 0%;
    max-height: 15cqmax;
    min-height: 0%;
}

button.el h1 {
    font-size: 1.5cqmax;
}

.code {
    background-color: black;
    color: white;
    padding: 1cqmax;
    border-radius: 1cqmax;
    font-family: monospace;
}

.codegrey {
    color: grey;
}

.codeblue {
    color: rgb(0, 153, 255);
}

.codeskyblue {
    color: skyblue;
    margin-left: 5px;
} 

.flex {
    display: flex;
    align-items: center;
    gap: 2cqmax;
}