body {
    height: auto;
    min-height: 100vh;
}
main{
    gap: 0rem;
}

#main-container {
    flex-direction: column;
    height: auto;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 11.2rem);
    gap: 0rem;
    align-self: stretch;
}

h1 {
    margin: 0;
    padding: 0;
    line-height: auto;
}

.hideonmobile {
    display: none;
}

.showonmobile {
    display: block;
}

footer {
    padding: 1rem;
    padding-bottom: 2rem;
}

header {
    padding: 1rem;
    gap: 1rem;
}

.header-top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    align-self: stretch;
    max-height: 3rem;
}

.contacts {
    justify-content: space-between;
    align-items: center;
    align-content: center;
    row-gap: 1.2rem;
    align-self: stretch;
    flex-wrap: wrap;
}

.primary-button {
    padding: 0.8rem 1.4rem;
    font-size: 1.2rem;
    font-weight: 500;
    transition: background 0.3s;
}

.primary-button:active {
    background: var(--main-dark);
}

.secondary-button {
    display: flex;
    padding: 0.8rem 1.4rem;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: var(--white);
    color: var(--grey);
    box-shadow: 0px 0px 30px 0px rgba(22, 22, 29, 0.05);
    font-size: 1.2rem;
    font-weight: 500;
    transition: background 0.3s;
}

.secondary-button:active {
    background: var(--grey-dark);
}

main {
    display: flex;
    margin: 0 auto;
    height: auto;
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
    flex: 3;
    overflow-y: auto;
}

#collection {
    display: flex;
    padding-bottom: 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    flex: 1 0 0;
    align-self: stretch;
}

.card {
    display: flex;
    height: 60vh;
    padding: 0rem;
    padding-top: 3rem;
    gap: 1rem;
    border-radius: 2rem;
    outline: solid 1px var(--grey-dark);
}

.preview img {
    max-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    flex: 1;
}

.logo-wrapper h1 {
    height: 100%;
}

.logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navigation {
    align-items: center;
    justify-content: end;
    align-self: stretch;
    flex-direction: row;
    gap: 0.5rem;
    flex: 2;
}

.aboutme {
    padding: 0rem;
    gap: 2.5rem;
}

.aboutme p{
    font-size: 1rem;
    max-width: 60ch;
}


.mytools {
    padding: 0rem;
    padding-top: 2rem;
}
