@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

*{
    margin: 0;
    border: 0;
    padding: 0;
    font-family: "Roboto Mono", monospace;
    color: #2085f8;
}

.grid-container{
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 6fr 1fr
}

.header{
    padding: 20px 100px;
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: space-between;
    align-items: center;
}

.navbar ul {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

ul {list-style: none;}
a {text-decoration: none;}
li {list-style: none;}


.login{
    color: black;
    padding: 10px 40px;
    border-radius: 40px 15px 40px 15px; 
    background-color: #2085f8;
        transition: 0.5s ease-in-out;
}

.login:hover{
    transition: 0.3s ease-in-out;
    background-color: #87f33e;
    /* filter:drop-shadow(10px 5px 15px #87f33e); */
    border-radius: 40px 40px 40px 40px; 
    /* box-shadow: 10px 5px 10px #87f33e; */
}

.login a {
    font-size: 20px;
    color: white;
}
/* 
.button {
    display: inline-block;
    text-align: center;
    background: var(--color);
    color: var(--bg);
    font-weight: bold;
    padding: 1.18em 1.32em 1.03em;
    line-height: 1;
    border-radius: 1em;
    position: relative;
    min-width: 8.23em;
    text-decoration: none;
    font-family: var(--font);
    font-size: 1.25rem;
}

.button:before,
.button:after {
    width: 4.4em;
    height: 2.95em;
    position: absolute;
    content: "";
    display: inline-block;
    background: var(--color);
    border-radius: 50%;
    transition: transform 1s ease;
    transform: scale(0);
    z-index: -1;
}

.button:before {
    top: -25%;
    left: 20%;
}

.button:after {
    bottom: -25%;
    right: 20%;
}

.button:hover:before,
.button:hover:after {
    transform: none;
} */


/* Main */

.main{
    position: absolute;
    text-align: center;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 400px;
}