html {
    box-sizing: border-box;
    font-size: 16px;
    font-family: montserrat;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    min-height: 100vh;

    padding-bottom: 1rem;

    /* background: rgb(0,0,139); */
    /* background: linear-gradient(180deg, rgba(0,0,139,1) 0%, rgba(0,0,97,1) 100%); */
    background-image: url(../img/senectute.jpeg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

    color: white;
}

.container {
    width: min(1140px, 100% - 2rem);
    margin-inline: auto;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5rem;

    height: calc(100vh - 2rem);
}

h1{
    font-size: clamp(2rem, -0.1739rem + 6.9565vw, 4rem);
    text-align: center;
    margin-bottom: 15vh;
    overflow-wrap: break-word;
}

a {
    color: white;
}

a:hover{
    color: #b4b4b4;
}

p{
    margin-bottom: 2rem;
    text-align: center;
}

.info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.info li{
    list-style: none;

    font-size: clamp(1.2rem, 0.806rem + 1.2609vw, 1.5625rem);
    font-weight: 500;

    letter-spacing: 3px;
}

.contact{
    margin-bottom: 5rem;
}

.disclaimer{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}