@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    background-color: #E44D26;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg%3E%3Cpolygon fill='%23bd3f20' points='1600 160 0 460 0 350 1600 50'/%3E%3Cpolygon fill='%2396321a' points='1600 260 0 560 0 450 1600 150'/%3E%3Cpolygon fill='%236f2415' points='1600 360 0 660 0 550 1600 250'/%3E%3Cpolygon fill='%2348170f' points='1600 460 0 760 0 650 1600 350'/%3E%3Cpolygon fill='%23210909' points='1600 800 0 800 0 750 1600 450'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;
    color: rgb(255, 255, 255);
    font-family: 'Poppins', sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
}


main h1 {
    text-align: center;
    font-size: 2.4rem;
    margin: 0;
}

main img {
    border: 6px solid rgb(253, 118, 7);
    border-radius: 50%;
    height: 240px;
    display: block;
    margin: 1rem auto;
    object-fit: cover;
    width: 240px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

main img:hover {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

main h4 {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
}

header {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1rem;
        color: #fff9;
    }
    h1,h2 {
        text-align: center;
    }
    

}
section {
    background-color: #0009;
    border-radius: 0.2rem;
    min-width: 350px;
    margin-top: 2rem;
    padding: 1rem;
    h3 {
        border-bottom: 2px dotted #fff;
        margin: 0;
    }
    p {
        color: #fff9;
    }
}


.btn-home {
    position: fixed;
    top: 15px;
    left: 15px;
    border: 2px solid white;
    border-radius: 50%;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: .6;
    transition: all 0.4s ease-in;
    z-index: 1000;
}

.btn-home:hover {
    transform: scale(1.1);
    opacity: 1;
}



menu {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}


menu a:link,
menu a:visited {
    background-color: rgb(214, 98, 20);
    color: rgb(238, 238, 238);
    border-radius: 12rem;
    padding: 0.4rem;
    display: flex;
    align-items: center;
    text-decoration: none;

    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

menu a:hover {
    transform: translateX(10px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    background-color: rgb(230, 110, 30);
}

menu a span {
    background-color: rgba(153, 44, 1, 0.774);
    color: rgb(255, 255, 255);
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
}



menu a h4 {
    margin: 0;
    text-align: left;
    text-indent: 0.2rem;
    width: 225px;
}



menu a small {
    display: block;
    font-size: 0.7rem;
    text-indent: 0.2rem;
    width: 225px;
}