.content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.content h3 {
    text-align: center;
    width: 100%;
}

main h2 { 
    font-size: 2.5em;
    padding-bottom: 1%;
    color: #fff;
}

main h2 img { /*efrei logo*/
    height: 50px;
    width: auto;
}

main a {
    text-decoration: none;
}
/*-------------------------------*/

/*cards related CSS*/
.cards{ /*container of the index cards*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 50%;
    gap: 3%;
}

.prescard {
    display: block;
    width: 45%;
    height: 30vh;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5%;
    background-image: url('../images/solo_alarm.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.prescard dt {
    text-align: center;
    font-size: 2.5vh;
    margin: 10% 0 0;
    font-weight: bold;
    color: #fff;
    text-decoration: underline cyan;
}
.prescard dd {
    text-align: left;
    font-size: 2vh;
    color: #67ffb8;
    margin: 10% 7.5% 0;
}

/* RootMe card (from API) */
/* right side of the page */
.rootmeCard-container {
    justify-content: center;
    width: 50%;
    /* background-color: #67ffb8; */
}
/* right side of the page */

/* actual card */
.root-meCard {
    margin: 7% 5% 0;
    /* background: rgb(8,9,10);
    background: linear-gradient(90deg, rgba(8,9,10,1) 0%, rgba(7,8,27,1) 60%); */
    background-color: #191c22;
    border: 4px solid #0f1014;
}

.root-meCard dt, .separator {
    font-family: "Iceland", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: x-large;
    color: white;
    /* background-color: #67ffb8; */
}

.root-meCard dd, .root-meCard li {
    margin: 0;
    list-style-type: none;
    /* color: rgb(32, 32, 202); */
    color: #d2d2d2;
    /* background-color: aliceblue; */
}


.root-meCard dd {
    font-size: x-large;
}

.root-meCard ul {
    font-size: large;
    margin: 0;
    padding: 0;
}

.root-meCard .prt1, .root-meCard .prt2, .root-meCard .prt3, .root-meCard .prt4 {
    width: 95%;
    margin: 2% 0 0 2%;
    border-bottom: 1px solid white;
}

.root-meCard a img {
    width: 100%;
    margin-bottom: 1% ;
}


.message {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 80%;
    font-size: larger;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
    margin: 0 0 5% 10%;
    border-radius: 15px;
    background-color: #1e334e;
    border: 2px solid #147bbf;
}

.message h3 {
    
    text-decoration: underline;
    width: 100%;
}

.message p {
    text-align: left;
    width: 100%;
    margin: 1% 15% 2%;
}