
@import url('fonts.css');

body {
    margin: 0;
    padding: 0;
}

.center {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    max-width: 100%;
}

.title-wrapper {
    display: inline-block;
    text-align: center;
    width: max-content;
    max-width: 100%;
}

#title {
    display: inline-block;
    font-size: max(100%, var(--text-font-size));
    font-family: var(--text-font), sans-serif;
    transition: transform 0.3s ease;
    transform-origin: center;
}

#title:visited, #title:link {
    color: black;
}

#title:hover {
    transform: scale(1.2);
}

.content-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 0 1rem 0;
}

.tf {
    flex: 1;
    margin: 0;
    font-family: var(--text-title-font), sans-serif;
    font-size: clamp(12px, 3vw, 22px);
    white-space: normal;
    background-color: white;
    height: 10vh;
    border: 10px solid;
    transition: width 0.3s ease, height 0.3s ease, background 0.2s;
}

.tf:hover {
    width: 27%;
    max-width: 27%;
    height: 15vh;
    cursor: pointer;
}

.tf.active {
    width: 27%;
    height: 15vh;
}

.img {
    width: 100%;
}


@media(max-width: 600px) {
    #title {
        font-size: 16vw;
    }

    #title:hover {
        font-size: 16vw;
    }

    .tf {
        border: 5px solid;
    }
}
