@font-face {
    font-family: 'Russo One';
    src: url('RussoOne-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html, body {
    height: 100%;
}

body {
    background: black;
    margin: 0;
    color: #F3FFF1;
    font-family: sans-serif;
    font-weight: 300;
    display: flex;
    justify-content: center;
}

#container {
    width: 100%;
    max-width: 320px;
    padding: 1em;
    text-align: center;
    box-sizing: border-box;
}

h1 {
    font-family: 'Russo One', cursive;
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: bold;
    margin: 1.5em 0;
}

.contact-info-grid {

}

.contact-info-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    margin-right: 20px;
    min-width: 30px;
    text-align: center;
}

.contact-detail {
    font-size: 16px;
}

.contact-detail a {
    text-decoration: none;
    border-bottom: 1px dotted #F3FFF1;
    color: #F3FFF1;
}

.contact-detail a:hover {
    color: #70CE56;
}

svg { color: #70CE56; }