@font-face {
    font-family: InterTight;
    src: url(fonts/InterTight-SemiBold.ttf);
}

body{
    line-height: 150%;
    background-color: #064b52;
}

hr{
    border-width: 5px;
    border-style:solid;
    background-color: #5e7180;
    color: #819db4;
    border-radius: 10px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    max-width: 90%;
}

.main-page h2, p{
    font-family: Georgia, 'Times New Roman', Times, serif, 'Times New Roman', Times, serif;
    margin: auto;
    font-size: 160%;
    text-align: center;
    line-height: 110%;
    max-width: 30em;
    color:#ebffff;
}

.post{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center; /* Center text within container */
    line-height: 110%;
    color:#ebffff;
}

.post p{
    display: block;
    font-family: Georgia, 'Times New Roman', Times, serif, 'Times New Roman', Times, serif;
    text-align: left;
    font-size: 110%;
    line-height: 1.4em;
    max-width: 60%; /* Limit maximum width of paragraphs */
    margin: 10px auto; /* Center paragraphs and add vertical spacing */
}

.post iframe{
    margin: 20px;
}

.social-block ul{
    list-style-type: none;
    padding-left: 0px;
}

a{
    text-decoration: underline;
    color: #ebffff;
}

a:hover{
    color: #819db4;
    text-decoration: none;
}

.tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.tabs a {
    text-decoration: underline;
    font-family: InterTight, Helvetica, sans-serif;
    color: #ebffff;
    padding: 10px 2px;
    margin: 0 10px;
    border-radius: 10px;
    transition: padding 0.4s ease, background-color 0.3s ease;
}

.tabs a:hover {
    background-color: #819db4;
    padding: 10px 8px;
}

.tabs a:active {
    background-color: #9fc9eb;
}

.main-title{
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1em;
    justify-content: center;
    font-family: InterTight, Helvetica, sans-serif;
    font-size: 4em;
    color: #ebffff;
}

.main-title-smaller{
        margin: auto;
        margin-top: 20px;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1em;
        justify-content: center;
        font-family: InterTight, Helvetica, sans-serif;
        font-size: 3em;
        color: #ebffff;
}

.main-subtitle{
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1em;
    justify-content: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 170%;
    color: #ebffff;
}

.contact-header{
    text-align: center;
}

.contact-header h1{
    margin: auto;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1em;
    justify-content: center;
    font-family: InterTight, Helvetica, sans-serif;
    font-size: 4em;
    color: #ebffff;
}

.contact-header h2{
    margin: auto;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1em;
    justify-content: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 150%;
    color: #ebffff;
}

.contact-box{
    margin: auto;
    margin-bottom: 0%;
}

.socials{
    font-family: Georgia, 'Times New Roman', Times, serif;
    max-width: 30em;
    margin: auto;
    margin-top: 20px;
    margin-bottom: -10px;
    text-align: center;
    font-size: 160%;
    line-height: 110%;
    color:#ebffff;
}

.social-block{
    text-align: center;
}

.socials-links a:hover{
    color: grey;
}

.socials-links{
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center;
    font-size: 130%;
    line-height: 1.5em;
}

.album-cover{
    margin: auto;
    text-align: center;
}

.album-cover img {
    margin: auto;
    margin-bottom: 20px;
    width: 100%;
    min-width: 20%;
    max-width: 300px;
}

.post-picture{
    margin: auto;
    margin-bottom: 20px;
    max-width: 400px;
    height: auto;
}

footer{
    font-size: 50%;
    margin-top: 40px;
}

@media screen and (max-width: 900px){
    .post p{
        max-width: 80%
    }
}

@media screen and (max-width: 600px){
    .main-page p{
        font-size: 120%;
    }
    .post p{
        font-size: 115%;
        line-height: 1.4em;
        max-width: 90%
    }
    .post iframe{
        height: 80%;
        width: 80%;
    }
    
    .tabs a{
        padding: 10px 0px;
    }
}