@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

body {
    width: 100 vw;
    height: 100 vh;
    background: linear-gradient(180deg, rgba(22, 41, 26, 0.94) 0%, rgba(0, 18, 39, 0.94) 100%), #FFF;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    display: grid;
    place-content: center;
    font-family: 'Ubuntu', sans-serif;
}

.container, .main {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    display: grid;
    place-content: center;
    gap: 1rem;
}
.logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
button  {
    background-color: transparent;
    color: white;
    border: 0;
    outline: 0;
    margin-top: 3rem;
}

a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
}