/*
 * Colors
 *
 * Yellow: #c1b28d
 * Red: #c93b31
 */

@font-face {
    font-family: 'tstar';
    src: url('../font/tstar-regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    text-align: center;
    background-image: url('../img/background.jpg');
    background-repeat: repeat;
    color: #c1b28d;
    font-family: 'tstar';
    margin: 0;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.album .title h1 {
    font-family: 'Kalam', cursive;
    margin-top: 0;
    margin-bottom: 10px;
}

.album .title h1 span {
    color: #c93b31;
    font-family: 'tstar';
}

.album .cover img {
    border: 1px solid #c1b28d;
    width: 375px;
}

@media (max-width: 768px) {
    .album .cover img {
        max-width: 90%;
        height: auto;
    }
}

.album .socials {
    text-transform: uppercase;
}
.album .socials ul {
    list-style: none;
    padding: 0;
}
.album .socials ul li a {
    text-decoration: none;
    color: #c93b31;
}
.album .socials ul li a:hover {
    color: #c1b28d;
}

.album .copyright {
    font-size: 12px;
    margin-bottom: 25px;
}
