.acc{
    background-color: rgba(255, 255, 255, 0.3);
    min-width: 300px;
    max-width: 800px;
    box-shadow: 0 5px 5px 1px rgba(0, 0, 0, 0.1);
    margin: auto;
    border-radius: 10px;
    margin-top: 20px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    text-align: center;
}

.quakes{
    background-color: rgb(255, 255, 255, 0.1);
    border-radius: 20px;
    height: 120px;
    box-shadow: 0 5px 5px 1px rgba(0, 0, 0, 0.1);
    font-family: 'noto sans', sans-serif;
    transition: all 0.3s ease;
}

.quakes:hover{
    transform: translateY(-5px);
    box-shadow: 0 5px 20px 5px rgba(0, 0, 0, 0.1);
}

.quakes h2{
    padding: 0;
    padding-left: 10px;
}

.maxIntensity{
    position: relative;
    top: 10px;
    left: 10px;
    display: flex;
    height: 100px;
    width: 100px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.maxIntensity h2{
    padding: 0;
    font-size: 50px;
    color: black;
}

#earthquakeLocation{
    font-size: 30px;
    padding: 0;
    margin-left: 25px;
    margin-top: 5px;
    padding-right: 20px;
}

#earthquakeTime{
    font-size: 25px;
    padding: 0;
    margin-left: 25px;
    margin-top: -30px;
}

#earthquakeMagnitude{
    font-size: 25px;
    padding: 0;
    margin-left: 25px;
    margin-top: -20px;
}

#EarthquakeDepth{
    font-size: 25px;
    padding: 0;
    margin-left: 25px;
    margin-top: -20px;
    padding-right: 20px;
}

.testingfooter{
    position: absolute;
    bottom: 60px;
    width: 100%;
    left: 0;
    background-color: rgb(255, 255, 255, 0.3);
    text-align: center;
    font-size: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    margin: auto;
    border-radius: 10px 10px 0 0;
}