@import url('colours.css');

@import url('fonts.css');

@import url('animations.css');

.workbench {
    font-family: workbench, monospace;
}

.offside {
    font-family: offside, monospace;
}

.dynapuff {
    font-family: dynapuff, monospace;
}

.btn {
    font-family: offside, monospace;
    background-color: transparent;
    border: dashed 2px rgba(0, 0, 0, 0.5);
    color: black;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.375rem 0.75rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 0.25rem 0;
    transition: all 0.5s ease-in;
    margin: 0.5rem;
}

.btn:hover {
    border-color: rgba(255, 255, 255, 1);
    background-color: rgba(0, 0, 0, 1);
    color: white;
}

.btn-type-1 {
    border: dashed 2px #2c2c2c;
    border-radius: 0.5rem;
    color: black;
    padding: 0.375rem 0.75rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 0.25rem 0;
    transition: background-color 0.5s ease-in;
}

.btn-type-1:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

body { 
    opacity: 0;
    transform: translateX(100%);
    transition: transform .75s ease-in-out;
    overflow: hidden;
}

.btn-unset:hover {
    background-color: transparent;
    border: dashed 2px rgba(0, 0, 0, 0.5);
    color: black;
    cursor: not-allowed;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.5s ease-in;
}