html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

#container{
    
    margin: auto;
}

@keyframes resize{
    
    from{ height: 100vh;}
    to{ height: 50vh;}

}

a{
    
    text-decoration: none;
    color: navy;
}

a:hover{
    
    color:white;
}

header{
    width: 100%;
    height: 100vh;
    background: linear-gradient(black, rgba(255, 255, 255, 0.01)), url(flag.jpg); 
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    animation: resize;
    animation-fill-mode: forwards;
    animation-duration: 6s;
}

#logo{
    width: 100%;
    background: url(tytWhite.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#buttons{
    
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 20px 0;
}

#buttons li{
    
    padding: 10px 40px;
    border: solid 2px navy;
    text-align: center;
    font-family: sans-serif;
    font-variant: small-caps;
    color: navy;
    background: white;
/*
    color: white;
    background: rgba(0, 0, 128, 0.77);
*/
}

.highlight{
    
    font-style: italic;
    font-weight: 600;
    
}

#buttons li:hover{
    
    color: white;
    border: solid 2px white;
    background: navy;
    
}

/*
#logo{
    display: block;
    width: 50%;
    margin: auto;
}

#logo img{
    
    width: 100%;
    display: block;
}
*/

#twitter{
    display: block;
    width: 70%;
    max-width: 800px;
    background: none;
    margin: auto;
    clear: both;
}

#twitter h2{
    
    width: 100%;
    font-size: 2em;
    text-align: center;
    font-family: sans-serif;
    padding: 30px 0;
    display: block;
    font-weight: 700;
    color: #11124f;

    
}

.reply{
    
    padding: 50px 0;
    background: #008eff;
}
.reply2{
    
    padding: 50px 0;
    background: #d00000;
}

.reply h2{
    
    width: 80%;
    margin: auto;
    text-align: center;
    font-size: 1.5em;
    font-family: sans-serif;
    color: white;
}.reply2 h2{
    
    width: 80%;
    margin: auto;
    text-align: center;
    font-size: 1.5em;
    font-family: sans-serif;
    color: white;
}

footer{
    width: 100%;
    display: block;
    height: 100px;
    background: url(tytLogo_2.png), black;
    background-position: center;
    background-size: contain
}

@media screen and (max-width: 600px){
    
    #buttons{
        
        flex-direction: row;
        width: 100%;
        margin: auto;
    }
    
    #buttons li{
        
        padding: 10px 20px;
    }

}