@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&display=swap');

/* 1 - General Styles START */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url("../img/background-bl.jpg");
    font-family: "Afacad Flux", sans-serif;
    height: 100%;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url("../img/background-bl.jpg");
    background-size: cover;
    background-position: center;
    color: rgb(255, 255, 255);
    height: 100vh;
}
/* 1 - General Styles FINISH */

/* 2 - Header place Styles START */
.header {
    width: 200px;
    background-color: rgba(170, 170, 170, 0.5);
    text-align: center;
    margin: 20px;
    padding: 20px;
}
.image-avatar {
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 150px;
}
.nickname {
    font-size: 22px;
}
/* 2 - Header place Styles FINISH */

/* 3 - Text place Styles START */
.text {
    font-weight: 200;
    text-align: center;
    align-content: center;
    background-color: rgba(170, 170, 170, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 200px;
    height: 60px;
    margin: 20px 0 20px;
}
/* 3 - Text place Styles FINISH */

/* 4 - Buttons place Styles START */
.button {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(170, 170, 170, 0.5);
    width: 200px;
    height: 40px;
    margin-bottom: 10px;
    padding: 0 10px;
}
.button:hover {
    background-color: rgba(223, 223, 223, 0.5);
    transform: scale(1.05);
}
.button a {
    color: rgb(255, 255, 255);
    font-size: 18px;
    text-decoration: none;
}
.icons img{
    width: 30px;
    margin-bottom: -5px;
}
.arrows {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    margin-top: -30px;
}
/* 4 - Buttons place Styles FINISH */
@media (min-width: 768px) {
    .container {
        width: 600px;
        margin: auto;
    }
}
@media (min-width: 1024px) {
    .container {
        width: 600px;
        margin: auto;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 600px;
        margin: auto;
    }
}
