*{
    box-sizing: border-box;
}

body main{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

body main table{
    border: 2px black double;
    text-align: center;
    text-transform: capitalize;
}

body main table a{
    color: black;
    text-decoration: none;
}

.hayevento{
    background-color: red;
    color: white;
    font-weight: bold;
}

body main table td:hover{
    background-color: blanchedalmond;
}

fieldset{
    border: 1px solid black;
    border-radius: 10px;
    width: 100%;
    padding: 15px;
}

fieldset input{
    display: block;
    padding: 4px;
    margin: 7px;
}

fieldset input[type="text"]{
    width: 100%;
}