@font-face {
    font-family: AvenirBlack;
    src: url(/assets/fonts/Avenir-Black.ttf);
}

@font-face {
    font-family: AvenirBook;
    src: url(/assets/fonts/Avenir-Book.ttf);
}

:root {
    --color-yellow: #c9da2c;
    --txt-size: 25px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    position: relative;
}

body {
    background-attachment: fixed;
    background-image: url(/assets/img/background.jpg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

img {
    width: 100%;
}

div.container {
    width: 100%;
    min-height: 100vh;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    font-family: AvenirBook;
}

div.content {
    width: 100%;
    max-width: 600px;
}

div.logo {
    width: 100%;
    margin: auto;
}

div.texts {
    margin: 80px 0;
    margin-top: 50px;
}

a.website-url {
    font-family: AvenirBlack;
    text-decoration: none;
    color: var(--color-yellow);
    font-size: var(--txt-size);
    text-transform: uppercase;
}

div.message {
    font-size: var(--txt-size);
    text-transform: uppercase;
}

div.click-here {
    color: var(--color-yellow);
    font-size: var(--txt-size);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    font-family: AvenirBlack;
}

div.socials-networks {
    align-items: center;
    text-align: center;
}

a.social-network {
    color: white;
    text-decoration: none;
    font-size: 60px;
    display: inline-block;
    margin-right: 30px;
    transition: .3s;
    margin-bottom: 60px;
}

a.social-network:last-child {
    margin-right: 0;
}

a.instagram:hover {
    color: #f307bb;
}

a.facebook:hover {
    color: #1877f2;
}

a.youtube:hover {
    color: #ff0000;
}

a.tiktok:hover {
    color: #f6244e;
}

div.donates {
    max-width: 220px;
    margin: auto;
    margin-top: 20px;
}

a.donate {
    display: block;
    margin-bottom: 20px;
    border: solid 1px white;
}

a.donate.paypal {
    margin-bottom: 0;
}