﻿@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

* {
    font-family: "Overpass", sans-serif;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

body {
    background-color: #0c0c0c;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
    height: 100%;
}

.container {
    background-color: #1c1c1c;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, .2);
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    min-width: 250px;
}

    .container.full-width {
        width: calc(100% - 40px);
    }

a {
    margin-top: 8px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    padding: 8px 12px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

    a:hover {
        opacity: 0.9;
    }

    a:active {
        opacity: 0.8;
    }

/*a{
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
    padding: 12px 8px;
    border-radius: 12px;
    font-weight: 500;
}

a:hover{
    border: 2px solid white;
}*/