* {
    margin: 0;
    padding: 0;
    font-size: calc(1vw + 1vh);
}

body {
    background-color: #0E2455 !important;
    color: white !important;
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
    width: 100%;
}

.card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    margin: 20px;
    width: 100%;
}

.information{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* margin: 20px; */
    width: 100%;
}

.img-profile {
    /* border-top-left-radius : 40px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px; */
    border: solid 3px #DAA325;
    margin: 20px;
    width: 250px; 
    border-radius: 50%;
}

.img-logo{
    width:450px;
}

a, a:visited, a:active, a:hover {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

p, a {
    font-size: 1.3em;
    margin: 10px;
}
h1 {
    font-size: 2.2em;
    margin: 10px;
    text-align: center;
}
h2 {
    color: #DAA325;
    font-size: 1.9em;
    margin: 10px;
    text-align: center;
}

.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.redes {
    /* width: 50px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.social-media {
    width: 80px;
    height: 80px;
    margin: 10px;
    border-radius: 50%;
    border: solid 2px #DAA325;
}

.social-media:hover {
    border-radius: 40%;
    background-color: white;
    color: #0E2455;
    transition: all 1s ease;
}

.social-media-icons {
    font-size: 54px;
    margin: 10px;
}

.footer {
    background-color: rgba(255, 255, 255, 0.1); 
    margin: 0; 
    padding: 10px;
}

@media screen and (max-width: 768px) {
    .card {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .information {
        flex-direction: column;
    }
    .img-profile {
        width: 50%;
    }
    .img-logo{
        width: 90%;
    }
    .redes {
        flex-direction: row;
        margin-top: -30px;
    }
}


