main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#warning-type {
    width: 400px;
    display: flex;
    margin-bottom: 20px;
    margin-top: 20px;
}

.selected {
    background-color: rgb(24, 125, 226) !important;
}

#warning-type button {
    width: 50%;
    height: 50px;
    background-color: dodgerblue;
    color: white;
    transition: .3s;
    outline: none;
    border: none;
    cursor: pointer;
}

#warning-type button:hover {
    background-color: rgb(24, 125, 226);
}

#warnings-container {
    padding: 20px;
    border-radius: 5px;
    background-color: white;
    width: 70%;
}

#warnings-title {
    width: 80%;
    display: block;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#warnings-title img {
    width: 150px;
}

#warnings-content {
    width: 80%;
    margin: 0 auto;
    text-align: justify;
}

.redirect-span {
    color: dodgerblue;
    cursor: pointer;
}

#icons-redes{
    padding-right: 3px;
    padding-left: 7px;
    align-items: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#icons-redes img{
    width: 70%;
    padding: 5px;
}