@charset "UTF-8";

body {
    font-family: 'Arial', sans-serif;
    background: url("./back.gif") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-top: 20px;
    border: 5px solid #fff; 
}
.main {
    max-width: 80%;
    padding: 30px;
    background-color: rgba(50, 50, 50, 0.8);
    box-shadow: 0 4px 8px rgba(50, 50, 50, 0.8);
    border-radius: 10px;
    text-align: center;
    animation: fadeIn 1s ease-out; 
}
p {
    color: #fff;
    font-size: 1.5em;
}
a.btn_instagram {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 120px;
    margin: auto;
    padding: 1rem 4rem;
    font-weight: bold;
    border: 2px solid #ffffff;
    background-color: rgba(50, 50, 50, 0.8);
    background: linear-gradient(to right,#833ab4,#fd1d1d,#fcb045);
    color: #fff;
    border-radius: 100vh;
    transition: 0.5s;
}
a.btn_instagram:hover {
    color: #27acd9;
    background: #fff;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    } 
    60% {
        transform: translateY(-10px);
    }
}
@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}
.python-code{
    max-width: 80%;
    padding: 30px;
    background-color: rgba(50, 50, 50, 0.8);
    box-shadow: 0 4px 8px rgba(50, 50, 50, 0.8);
    border-radius: 10px;
    text-align: center;
    animation: fadeIn 1s ease-out; 
}