*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
}
body{
    background-color: #000;   
}
#container{
    height: 90vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 0.2fr;
    grid-template-areas: "www" "tp";
    position: relative;
    overflow: auto;
    color: #fff;
}
.domeinua{
    width: auto;
    grid-area: www;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
h1{
    padding-bottom: 50px;
    font-size: 15pt;
    letter-spacing: 6px;
}
.tapuntu{
    width: auto;
    grid-area: tp;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
a{
    color: #fff;
    text-decoration: none;
        letter-spacing: 2px;
}
img {
    height: auto;
    width: 100px;
}
@media screen and (min-width: 768px){
    #container{
        height: 100vh;
    }
    h1{
        font-size: 46pt;
    }
    img {
        width: 141px;
    }
    .tapuntu{
        padding-bottom: 50px;
    }
}