﻿/*Home page paragraph*/
#info {
    background-color: white;
    margin-left: 20%;
    margin-right: 20%;
    position: absolute;
    margin-top: 40px;
    border-radius: 10px;
    padding: 7px;
}

#info p{
    font-size: 24px;
}

details{
    transition: margin-bottom 0.5s ease;
    display: block;
}

details[open]{
    padding-bottom: 40px;
    margin-bottom: 50px;
}

details a{
    text-decoration: none;
    color: blue;
}

summary{
    font-weight: bold;
    cursor: pointer;
}

