* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mititulo {
    text-align: center;
    font-family: Arial;
    font-size: 30px;
    color: #ffffff;
    text-shadow: 0px 0px 9px #6094d4;
}

.mititulos {
    text-align: center;
    font-family: Arial;
    font-size: 16px;
    color: #ffffff;
    text-shadow: 0px 0px 9px #6094d4;
}

.botos{
	padding: 3px;
	background-color: #ee8d0f;
	border: none;
	color: white;
	text-decoration: none;
	margin: 2px 2px;
	cursor: pointer;
  }

body {
    height: 100vh;
    display: grid;
    align-items: center;
    justify-content: center;
    /*background-color: #1d042c;*/
    background: url(../menu/img/fondo.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;    
}

.icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 20px;
    border-radius: 50%;
    transition: all .8s;
    cursor: pointer;
}

.icon:hover {
    background-color: #1877f2;
    box-shadow:  0 0 20px #1877f2;
}

.icon i {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 1.7rem;
}

svg circle {
    stroke-dasharray: 150;
    transition: all .8s ease-in-out;
}

.icon:hover circle {
    stroke-dasharray: 220;
}