@import url('https://fonts.googleapis.com/css2?family=Akshar&family=Anybody:wght@300&family=DM+Sans:wght@400;700&family=Inter:wght@300&family=Koulen&family=Roboto:wght@400;500;700&family=Source+Code+Pro&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.basic {
    --bg-color: #EDF2FF;
    --text-color: #00082F;
    --primary-color: #4263EB;
    --primary-color-dark: #364FC7;
    --border-gradient: linear-gradient(135deg, #4263eb, #748ffc, #bac8ff);
}

.dark-blue {
    --bg-color: #00082F;
    --text-color: #EDF2FF;
    --primary-color: #4263EB;
    --primary-color-dark: #364FC7;
    --border-gradient: linear-gradient(135deg, #1c7ed6, #4263eb, #7048e8);
}

.pink {
    --bg-color: #FFF0F6;
    --text-color: #1F000B;
    --primary-color: #D6336C;
    --primary-color-dark: #F61E4D;
    --border-gradient: linear-gradient(135deg, #d6336c, #f783ac, #fcc2d7);
}

.dark-pink {
    --bg-color: #1F000B;
    --text-color: #FFF0F6;
    --primary-color: #D6336C;
    --primary-color-dark: #F61E4D;
    --border-gradient: linear-gradient(135deg, #ae3ec9, #d6336c, #f61e4d);
}


body {
    background-color: var(--bg-color);
    color: var(--text-color);
    position: relative;
    animation: animatetop 0.4s;
    transition: background-color 0.6s ease, color 0.6s ease;
}

button {
    border: none;
    background-color: rgba(0, 0, 0, 0);
}

a {
    text-decoration: none;
}

.container {
    text-align: center;
    width: 300px;
    margin: 60px auto;

}

.imagem-logo {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    padding: 3.7px;
    border: 4px solid transparent; 
    background: 
        linear-gradient(var(--bg-color), var(--bg-color)) padding-box, 
        var(--border-gradient) border-box;
    transition-duration: 0.4s;
    box-shadow: 0 0 15px var(--primary-color);
}

.imagem-logo:hover {
    transform: scale(1.2);
    box-shadow: 0 0 25px var(--primary-color-dark);
}

h1 {
    font-size: 32px;
    margin-top: 24px;
    margin-bottom: 8px;
}

p {
    font-family: 'Roboto Mono', monospace;
    opacity: 0.8;
    font-size: 18px;
}

ul {
    list-style: none;
    margin: 48px 0;
}

ul li a {
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #feffff;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 16px;
    border-radius: 6px;
    transition: background 400ms;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

ul li a:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-3px);
}



footer {
    font-weight: 500;
    font-size: 12px;
    opacity: 0.6;
    padding: 1rem;
}



@keyframes animatetop {
    from {
        top: -800px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}