@tailwind base;
@tailwind components;
@tailwind utilities;

footer{
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

body{
    margin: 0;
}

p, h1, h2, h3, a{
    font-family: Arial, Helvetica, sans-serif !important;
}
tr, td{
    font-family: Arial, Helvetica, sans-serif !important;
}


.top-menu{
    width: 80%; 
    margin: 0px auto 10px auto;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
}
.top-menu div{
    border: 1px solid darkgrey;
    flex: 1;
    padding: 8px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-menu div p{
    margin: 0px;
    text-align: center;
    color: #808080;
}
.top-menu div p:hover{
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media(max-width:700px){
    .top-menu{
        width: 98%;
    }
}