@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Sans-Serif;
}

div#container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 100vh;
}

div.topo {
    display: flex;
    justify-content: center;
    width: 500px;
    height: 300px;
}

div.topo img {
    width: 100%;
}

div.corpo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 10px;
}

h1 {
    margin: 10px;
    font-size: 26px;
}

h2 {
    margin: 10px;
    font-size: 20px;
}

p {
    margin: 10px;
    font-size: 14px;
}

ul {
    margin-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.footer {
    display: flex;
    justify-content: center;
    padding: 5px;
    width: 100%;
    height: 20px;
    background: yellow;
    font-size: 12px;
    font-weight: bold;
}

.btn {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 30px;
    background-color: green;
    color: white;
    padding: 10px;
    border-radius: 50px;
    width: 200px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s ease-in-out;
}

.btn:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}

.btn-icon {
    font-size: 20px;
    margin-left: 30px;
}