body {
    background-color: rgb(31, 34, 65);
    font-family: 'Inter', sans-serif;
}

.title {
    text-align: center;
    color: white;
    font-size: 40px;
    margin-top: 50px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;

    margin-top: 50px;
}

.box {
    flex-basis: 300px;
    padding: 20px;
    margin: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    text-align: center;
    
    border-radius: 15px;
    /* background-color: rgb(238, 114, 118); */
    border: 5px solid rgb(238, 114, 118);
}

h3 {
    margin-top: 10px;
}

a {
    text-decoration: none;
    color: white;
    font-weight: 500;

    padding: 10px;
    border-radius: 25px; /* add rounded corners */
    transition: background-color 0.3s ease;
}
  
a:hover {
    background-color: #ddd;
    color: black;
  }

.box img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;

    border-radius: 10px;
    box-shadow: 5px 5px 8px grey;
    margin-bottom: 25px;
}

#pomodoro {
    width: 300px;
    height: 248px;
}

.box h3 {
    margin-top: 0;
    font-size: 20px;
    font-weight: bold;
}

.box p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.5;

    font-weight: 200;
    color: white;
}

@media (max-width: 767px) {
    .box {
        flex-basis: calc(50% - 40px);
    }
}

.resources {
    margin: 20px;
    padding-top: 5px;
    padding-left: 20px;
    border: 3px solid rgb(238, 114, 118);
    border-radius: 10px;
}

h3 {
    color: white;
}

p {
    color: white;
}

p a {
    text-decoration: underline;
}

hr {
    width: 75%;
    margin-right: 350px;
}