@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #000;
    margin: 0;
    padding: 0;
    height: 910px;
}

.logo-container {
    text-align: center;
    position: relative;
}

.logo-container img {
    padding-top: 20px;
    height: 70px;
    margin-top: 10px;
}

.purple-bg {
    background-image: linear-gradient(#b57cff 0%, #ffffff 100%);
    width: 100%;
    height: 450px;
    position: relative;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 240px;
    padding-bottom: 0px;
}

.links-row {
    display: flex;
    gap: 400px;
    margin-bottom: 220px;
    z-index: 2;
}

.btn {
    transform: scale(1.5);
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 40px;
    padding-right: 45px;
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    font-weight: 900;
    font-size: 1.3rem;
    border: 2px solid #fff;
    box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.6);
    text-align: center;
}

.btn:hover {
    transition-duration: 0.5s;
    transform: scale(1.7);
    border: 2px solid #c7c7c7;
}

.btn-img {
    height: 28px;
    margin-right: 15px;
}

.btn-white {
    background: rgba(255, 255, 255, 0.4);
}

.btn-white:hover {
    transition-duration: 0.5s;
    background: rgba(255, 255, 255, 0.637);
}

.avatar-circle {
    background-color: linear-gradient(135deg, #6a11cb 0%, #6b11cbaf 50%, #ffffff 100%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 6px solid #fff;
    background: #fff;
    overflow: hidden;
    position: relative;
    top: 0px;
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    background-color: white;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    height: 90px;
}

.bottom-bar a {
    text-decoration: none;
    color: #000;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ImageGalac {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.text-host {
    font-size: 0.85rem;
    line-height: 1.2;
    font-weight: 800;
    text-transform: none;
}

.credits {
    text-align: right;
    font-size: 0.85rem;
    line-height: 1.2;
    font-weight: 800;
}


strong {
    font-weight: 900;
}