@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-image: linear-gradient(to bottom right, rgb(255, 255, 255), rgb(180, 180, 180));
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.profile {
    text-align: center;
    margin-bottom: 40px;
}

.avatar img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

.avatar-left {
    vertical-align: middle;
    width: 50px; /* Ajuste conforme necessário */
    height: auto; /* Para manter a proporção da imagem */
    margin-right: 10px; /* Espaçamento entre a imagem e o texto */
    border-radius: 15px;
}


.intro {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.intro i {
    margin-right: 10px;
}

.courses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.course {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.course a {
    text-decoration: none;
    color: inherit;
}

.course img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
}

.course h2 {
    padding: 15px;
    margin: 0;
    font-size: 18px;
    text-align: center;
}

.description {
    padding: 0 15px 15px 15px;
    margin: 0;
    font-size: 14px;
    color: #555;
    text-align: justify;
}
