body {
    padding: 0;
    margin: 0;
    background: rgb(52, 7, 214);
}
div {
    display: flex;
    justify-content: center;
    align-content: center;
}
p {
    font-family: roboto;
    font-size: 20px;
    font-weight: 700;
    color: white;
}
a {
    font-family: roboto;
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: rgb(191, 191, 191);
}
.navbar ul {
    list-style-type: none;
}
.navbar a {
    display: block;
    text-align: center;
    padding: 13px;
}
.navbar a:hover {
    background: rgb(52, 7, 124);
}
.menu-list {
    list-style-type: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: none;
}
.menu-list li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
.icons-contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;
    background: rgb(52, 7, 214);
    padding: 15px;
    position: relative;
}
.icons-contact a {
    text-decoration: none;
}
.icons-contact i {
    color: gold;
    transition: 0.5s;
}
.icons-contact i:hover {
    color: rgb(204, 173, 0);
}
.icons-contact p {
    background: rgba(52, 7, 124, 0.5);
    position: absolute;
    right: 10px;
    bottom: -20px;
    font-weight: 700;
    color: gold;
}

/*Otras secciones*/

.head {
    background-color: rgb(52, 7, 214);
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 20px;
    color: gold;
    font-weight: 700;
    margin: 0;
}
.home {
    position: absolute;
}
.home a {
    text-decoration: none;
    color: gold;
    transition: 0.3s;
}
.home a:hover {
    color: rgb(204, 173, 0);
}
