@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&family=Roboto:wght@100;300;500;700;900&display=swap');

body {
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
    background-image: url('./background.png');
    background-repeat: repeat;
    background-size: 50px 50px;
    animation: animatedBackground 20s linear infinite;
    padding: 20px;
}


@media only screen and (min-width : 820px) {
    body {
        animation: animatedBackground 60s linear infinite;
    }
}

@keyframes animatedBackground {
    from {
        background-position: 0% 0%;
    }

    to {
        background-position: 100% 100%;
    }
}

button {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

#photo {
    min-height: 100px;
    height: 200px;
    max-height: 20vh;
    width: auto;
    margin: 20px 0;
    border-radius: 100%;
    border: 5px solid #fff;
}

.buttonLogo {
    margin: 0;
    height: 20px;
    margin-right: 15px;
}

ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 30px;
}

li {
    width: 100%;
}

button {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 300px;
    background-color: #fff;
    border: 4px solid #000;
    position: relative;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    text-align: start;
}

#blackBackground {
    background-color: #3d3d3d;
    color: #fff
}

button::before {
    content: "";
    position: absolute;
    right: -11px;
    top: 1px;
    width: 98%;
    height: 98%;
    background-color: #000;
    background-size: 12px, 100%;
    border: 0.4rem solid #000;
    z-index: -2;
}
