@charset "UTF-8";

body {
    background-color: lightgray;
    overflow-x: hidden;
}

main {
    text-align: center;
    align-content: center;
    width: 100%;
    height: 120px;
    margin: auto;
    margin-top: 100px;
    display: block;
    flex-direction: row;
}

a{
    display: inline-block;
    background-color: rgb(161, 161, 161);
    color: rgb(0, 0, 129);
    text-decoration: none;
    text-align: center;
    align-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    width: 10%;
    height: 80px;
    margin: 30px;
    border-radius: 20px;
    border-style: solid;
    box-shadow: 1px 1px 5px black;
    border-color: rgb(0, 0, 129);
    transition: transform 0.4s ease;
}
a:hover{
    display: inline-block;
    background-color: rgb(192, 192, 192);
    color: rgb(0, 0, 129);
    text-decoration: none;
    text-align: center;
    align-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    width: 10%;
    height: 80px;
    margin: 30px;
    border-radius: 20px;
    border-style: solid;
    box-shadow: 1px 1px 5px black;
    border-color: rgb(0, 0, 129);
    
    transform: scale(1.1);
}


#titulo {
    color: rgb(255, 255, 255);
    font-size: 120px;
}

#nomemat {
    height: 30px;
}

.texto {
    color: rgb(255, 255, 255);
    margin: 0 auto;
    align-content: center;
    font-family: Arial, Helvetica, sans-serif;
}

header {
    width: 70%;
    height: 200px;
    text-align: center;
    align-content: center;
    margin: 0 auto;
    border-radius: 21px;
    background-color: rgb(0, 0, 129);
    box-shadow: 1px 1px 5px black;
}
