body {
    background-color: rgb(16, 16, 16);
    margin: 2.5rem;
}

h1 {
    color: #f95346;
    font-size: 0.8rem;
    font-family: sans-serif;
    margin-top: 15px;
    margin-bottom: 5px;
}

h2 {
    color: #f95346;
    font-size: 0.7rem;
    font-family: sans-serif;
    margin-top: 15px;
    margin-bottom: 5px;
}

p {
    color: white;
    font-size: 0.7rem;
    font-family: serif;
    margin: 0;
    text-indent: 12px;
}


.flex-containertop {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 15%;
    margin-bottom: 5px;
}

.flex-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.stamp {
    height: 150px;
}

.logo {
    position: absolute;
    right: 2rem;
    top: 2rem;
    height: 110px;
}

.logo:hover {
    scale: 104%;
}


/*Dropdown*/

.dropbtn {
    position: relative;
    background-color: transparent;
    padding: 0;
    text-align: left;
    border: none;
    min-width: 125px;
    z-index: 0;
}

.dropdown {
    position: relative;
    display: contents;
}

.dropdown-content {
  display: none;
  position: absolute;
  width: 300px; 
  top: 70%;
  left: 40%;
  z-index: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .stamp {
    scale: 145%;
}

.dropbtn:hover {
    z-index: 1;
}

/*Flex*/


@media (max-width: 550px) {

    .flex-containertop {
        flex-direction: column;
        justify-content: normal;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .flex-container {
        flex-direction: column;
        justify-content: normal;
        margin-left: 0;
        margin-right: 0;
    }
    
    .stamp {
        width: 100%;
        height: auto;
        padding-left: 0;
        padding-bottom: 0.7rem;
    }
    
    body {
        margin-top: 10rem;
    }
    
    .logo {
        position: absolute;
        right: 2rem;
        top: 2rem;
        height: 80px;
    }
    
    .logo:hover {
        scale: 100%;
    }
    
    .dropdown:hover .stamp {
        scale: 100%;
    }
    
    .dropdown-content {
        display: block;
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        /*
        margin-left: 2rem;
        margin-right: 2rem;
        */
        margin-bottom: 5rem;
    }
    
    h1 {
      font-size: 1.4rem;  
    }
    
    h2, p {
        font-size: 0.9rem;  
    }