html, header{font-family: Arial, Helvetica, sans-serif;}
body{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 42px;
    padding: 5px 14px;
    min-height: 100vh;
    overflow-y: scroll;
}

header{
    text-align: center;
    gap: 14px;
}

body,
header,
main{
    display: flex;
    flex-direction: column;
}

header img{
    max-width: 140px;
    width: 100%;
    margin: 0 auto;
    border-radius:100%;
    padding-bottom: 8px;
}

header p {
    font-size: 0.9em;
    font-weight: 700;
}

main{
    gap: 14px;
}

.link {  
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid cornflowerblue;  
    border-radius: 8px;
    width: 420px;
    max-width: 100%;
    margin: 0 auto;
    transition-duration: 200ms;
    cursor: pointer;
    text-decoration: none;
    color: cornflowerblue;
}

.link p {
    margin: 0;  /* Remove default paragraph margins */
}

.link:hover {
    background-color: cornflowerblue;
    color: white;
    transform: scale(1.02);  /* Slight hover effect */
}