
/* mobile screen-portrait */

@media screen and (max-width: 435px) and (orientation: portrait) {

body {
    background-color: hsl(217, 54%, 11%);
    font-family: 'Outfit', sans-serif;

}

h3 {
    color: white;
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 8px;
}

p{
    color: hsl(215, 51%, 70%);
    font-size: 18px;
    margin-bottom: 8px;
}

hr {
    color: hsl(215, 20%, 38%);
}

.card {
    justify-content: center;
    display: flex;
    align-items: center;
}

.card img {
    border-radius: 10px;
    margin: 10px 0px;
}

.overlay {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
    background-color: hsla(216, 23%, 50%, 0.605);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay:hover {
    opacity: 1;
    z-index: 1;
}

.container {
    background-color: hsl(216, 50%, 16%);
    height: 70vh;
    padding: 10px;
    border-radius: 10px;
    margin: 0px 20px;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.ETH {
    color: hsl(178, 100%, 50%);
    font-weight: 500;
    font-size: 18px;
    font-style: bold;
    display: flex;
    padding-right: 80px;

}

.collection {
    display: flex;
    justify-content:flex-start;
    align-items: center;
}

.icon {
    padding-right: 7px;
    padding-left: 20px;
}

.clock {
    padding-right: 7px;
}

.days {
    color: hsl(215, 51%, 70%);
    font-size: 18px;
}

.creator {
    display: flex;
    justify-content: center;
    align-items: center;
}
}

/*mobile screen -landscape */

@media screen and (max-width: 1000px) and (orientation: landscape) {

body {
    background-color: hsl(217, 54%, 11%);
    display: flex;
    font-family: 'Outfit', sans-serif;
    justify-content: center;
    align-items: center;
}

h3 {
    color: white;
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 8px;
}

p{
    color: hsl(215, 51%, 70%);
    font-size: 18px;
    margin-bottom: 8px;
}

hr {
    color: hsl(215, 20%, 38%);
}

.card {
    justify-content: center;
    display: flex;
    align-items: center;
}

.card img {
    border-radius: 10px;
    margin: 10px 0px;
}

.overlay {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
    background-color: hsla(216, 23%, 50%, 0.605);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay:hover {
    opacity: 1;
    z-index: 1;
}

.container {
    background-color: hsl(216, 50%, 16%);
    height: 70vh;
    padding: 20px;
    border-radius: 10px;
    margin: 10px 10px;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    width: 350px;
    height: 550px;
}

.ETH {
    color: hsl(178, 100%, 50%);
    font-weight: 500;
    font-size: 18px;
    font-style: bold;
    display: inline-flex;

}

.icon {
    display: inline-flex;
    margin-right: 5px;
}

.clock {
    display: inline-flex;
    padding-left: 150px;
}

.days {
    color: hsl(215, 51%, 70%);
    font-size: 18px;
    display: inline-flex;
    float: right;
}

.creator {
    display: flex;
    justify-content: center;
    align-items: center;
}
}