*{
    margin: 0;
}

body{
    background-color: #181818;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}

.content{
    width: 70%;
    height: 80%;
    margin: auto;
    padding: 4%;
    background-color: #212121;
    border-radius: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.text{
    border: 1px solid black;
    background-color: #181818;
    color: white;
    border-radius: 15px;
    padding: 10px;
    width: 80%;
}

button{
    height: 40px;
    width: 40px;
    background: none;
    border: none;
    color: white;
    background-color: #181818;
    border-radius: 50%;
    border: 1px solid black;
    margin-bottom: 30px;
}

.interest-points{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: auto;
    grid-gap: 10px;
}

.interest-points div{
    border-radius: 15px;
    background-color: #181818;
    box-shadow: 0 0 5px rgba(97, 97, 97, 0.5);
    color: white;
    padding: 10px;
    text-align: left;
    height: 50px;
    display: flex;
    align-items: center;
}

.interest-points div button{
    font-size: small;
    margin: 0;
}

.topic_button{
    height: 40px;
    background: none;
    border: none;
    color: white;
    background-color: #181818;
    border-radius: 15px;
    border: 1px solid black;
    margin-bottom: 30px;
    padding: 15px;
    margin-top: auto;
    margin-left: 90%;
}