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

:root {
    font: 16px 'Roboto', sans-serif;
    color: white;
}

.header {
    text-align: center;
}

body {
    background-color: #3333338b;
    background-image: linear-gradient(to top right, rgba(226, 51, 80, 0.801), black);
    margin: 0;
    padding: 0;  
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app {
    background-image: linear-gradient(rgba(165, 33, 205, 0.511), transparent);
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 20px;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    display: grid;
    padding: 20px;
}

.card {
    border: 1px #666 solid;
    padding: 2rem;
    border-radius: 10px;
    background-color: #333;
    justify-content: center;
    align-items: center;
    display: grid;
}

.container {
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
    width: 80vw;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
