
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    transition: .2s;
}
a {
    text-decoration: none;
    color: black;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 10px 20px;
    border-bottom: 2px solid #e0e0e0;
}

header ul {
    display: flex;
    justify-content: left;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

header a:first-child {
    font-weight: bold;
    font-size: 2rem;
    margin-right: 30px;
}

header a {
    cursor: pointer;
}

header li:hover {
    color: blue;
}
header li:first-child:hover {
    color: black;
}

header input {
    padding: 5px 10px;
    border-radius: 15px;
    border: 1px solid #ccc;
}
header span {
    display: flex;
}
#loginMenu{
    position: absolute;
    top: 0;
    right: -400px;

    background: #ffffff;
    border: 3px solid black;
    width: 10vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}
#loginMenu button {
    background: #e0dede;
    width: 90%;
    padding: 10px;
}
#loginMenu a{
    padding: 10px;
}
header img{
    width: 40px;
    height: 40px;
}