@font-face {
    font-family: 'Cabin'; /* Choose a name */
    src: url('cabin.ttf') format('ttf');
    font-weight: normal; /* Or specify weights: bold, etc. */
    font-style: normal;  /* Or specify styles: italic, etc. */
}

body {
    font-family: 'Cabin', sans-serif;
}

p {
    max-width: 600px;
}

.container {
    display: flex;
    align-items: center; 
    height: 100px;
    font-size: 32px;
    font-weight: 500;
}

.maincontainer {
    flex-direction: column;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;
}
