/* Basic Reset */
@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&family=Quando&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f0f0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', 'poppins', sans-serif;
}

.logo {
    font-family: 'Quando', sans-serif;
    font-size: 1.6rem;
    color: grey;
    text-decoration: none;
    text-align: center;
    user-select: none;
}

.container {
    width: 100vw !important;
    min-height: 80vh !important;
    min-width: 99vw !important;
    margin-left: 0 !important;
    padding: 0 !important;
}

.topContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 3rem;
}

.btn {
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    background-color: grey !important;
    color: white !important;
}