@font-face {
    font-family: 'Sofia Sans';
    src: url('./SofiaSans-Regular.ttf') format('truetype');
}

html,
body {
    margin: 0px;
    background-color: #282828;
    color: #eee;
    height: 100vh;
    font-family: 'Sofia Sans';
    letter-spacing: 2px;
    font-size: 1.05rem;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.col-container {
    display: flex;
    gap: 75px;
}

.res-column {
    min-width: 180px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.res-title {
    color: #5eab97;
    border-bottom: 1px solid #5eab97;
}

ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding-left: 0;
}

ul>li {
    margin: 0px 0px;
}

a {
    color: #eee;
    text-decoration: none;
}

a:hover {
    color: #aaa;
}

@media only screen and (max-device-width: 1024px) {
    .container {
        padding-top: 15px;
        margin: 0px 15px 0px 15px;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .col-container {
        flex-direction: column;
        gap: 15px;
    }
}
