@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
    background-color: #ffffff;
}

body{
    overflow: hidden;
}

:root{
    --color: #54595F;
}

.front-row{
    width: 100%;
    display: flex;
    justify-content: left;
}

.logo{
    max-width: 220px;
    margin-top: 30px;
    margin-left: 30px;
}


.main-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;

}

.main-container h1{
    font-family: 'Roboto Mono', monospace, sans-serif;
    color: var(--color);
    /* text-transform: uppercase; */
    text-decoration: none;
    /* letter-spacing: 2px; */
    font-size: 40px;
    /* line-height: 20px; */
}

.last-row{
    position: fixed;
    bottom: 0;
    display: flex;
    width: 100%;
    justify-content: left;
}

.last-row h4{
    margin-bottom: 30px;
    margin-left: 30px;
    font-family: 'Roboto Mono', monospace;
    color: var(--color);
    /* text-transform: uppercase; */
    text-decoration: none;
    /* letter-spacing: 2px; */
    font-size: 14px;
}