home-grid {
align-items:end;    
    display:grid;
    grid-template-rows:1fr 1fr;
    height:100%;
}

home-top {
    display:grid;
    grid-template-columns:1fr auto 2fr;
}

home-message {
   text-align:justify;
    box-sizing:border-box;
    color:white;
    width:100%;
    max-width:500px;
    font-weight:300;
    padding:1em;
}


home-message p {
    text-align:center;
}


home-message a {
    text-decoration:none;
    color:white;

    background-color:darkred;
    padding:0.5em;

}

home-message a:hover {
    color:darkred;
    background-color:white;
}   


home-bottom {
    display:grid;
    grid-template-columns:2fr auto 1fr;
}

home-conference {
    box-sizing:border-box;
    background-color:white;
    color:darkred;
    width:100%;
    max-width:500px;
    padding:1em 1em 2em 1em;
    
}

home-conference h3 {
    font-size:1em;
    margin:0;
}

home-conference p {
text-align:center;
margin:0.1em 0 0 0;
}


home-conference a {
    text-decoration:none;
    color:darkred;
    border:1px solid darkred;
    padding:0.25em;
}

home-conference a:hover {
    color:white;
    background-color:darkred;
}    