/* Remove padding and force height to 100% */
*,
html,
body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
}

body {
    background: url("images/bg.webp");
    background-size: 100%;
    background-repeat: no-repeat-y;
    background-color: #eeb8f2;
    /* Some fonts and nice colors */
    font-family: "Cinzel Decorative", serif;
    color: #FFEDBD;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;


    margin: 40px auto;
    max-width: 1600px;
    padding: 0 10px;
}

a {
    text-decoration: none;
}

.shadow {
    text-shadow: 4px 4px 6px rgb(26, 26, 32);
}


.header-container {
    display: flex;
    gap: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}

.header {
    text-align: center;
    font-size: calc(3vw + 3vh);
}

.profile-photo {
    height: 200px;
    border-radius: 200px;
}

.link-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.link-button {
    color: #FFEDBD;
    background-color: rgba(0, 0, 0, .3);
    border: none;
    border: 8px solid #FADFB2;
    padding: 15px;
    font-family: 'Yeseva One';
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 30px;
    max-width: 550px;
    width: 100%;
}

.link-button:hover {
    background-color: rgba(0, 0, 0, .6);
    text-decoration: none;
    cursor: pointer;
}

.link-button:focus {
    background-color: rgba(0, 0, 0, .6);
    text-decoration: none;
    cursor: pointer;
}

.link-button:active {
    background-color: rgba(0, 0, 0, .7);
    text-decoration: none;
    cursor: pointer;
}

.icons {
    color: #FFEDBD;
    height: 35px;
    -webkit-filter: drop-shadow(4px 4px 6px rgb(26, 26, 32));
    filter: drop-shadow(4px 4px 6px rgb(26, 26, 32));
}

.twinkle {
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%{
        transform: scale(1);
        transform: rotate(0deg);
    }
    6.25% {
        transform: scale(1.5);
        transform: rotate(5deg);
    }
    18.75% {
        transform: scale(1.5);
        transform: rotate(-5deg);
    }
    25% {
        transform: scale(1);
        transform: rotate(0deg);
    }
}
